/* Why Get Featured Section Start */
.why_get_featured_section {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 60px 0;
}

.why_get_featured_heading {
    font-size: var(--heading-1-size);
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.why_get_featured_heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.why_get_featured_subtitle {
    text-align: center;
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.why_get_featured_content {
    max-width: 1100px;
    margin: 0 auto;
}

.why_get_featured_benefits_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.why_get_featured_benefit_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(11, 46, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.why_get_featured_benefit_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why_get_featured_benefit_card:hover::before {
    transform: scaleY(1);
}

.why_get_featured_benefit_card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.why_get_featured_benefit_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 120, 0.2);
}

.why_get_featured_benefit_card:hover .why_get_featured_benefit_icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(31, 111, 120, 0.3);
}

.why_get_featured_benefit_icon i {
    font-size: 26px;
    color: var(--background-white);
}

.why_get_featured_benefit_content {
    flex: 1;
}

.why_get_featured_benefit_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why_get_featured_benefit_desc {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.why_get_featured_free_badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.25);
    position: relative;
    overflow: hidden;
}

.why_get_featured_free_badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.why_get_featured_free_icon {
    width: 70px;
    height: 70px;
    background-color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.why_get_featured_free_icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why_get_featured_free_text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.why_get_featured_free_text h4 {
    font-size: var(--heading-3-size);
    font-weight: var(--heading-3-weight);
    color: var(--background-white);
    margin-bottom: 8px;
}

.why_get_featured_free_text p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .why_get_featured_benefits_grid {
        gap: 20px;
    }

    .why_get_featured_benefit_card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .why_get_featured_section {
        padding: 40px 0;
    }

    .why_get_featured_heading {
        font-size: 24px;
    }

    .why_get_featured_subtitle {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .why_get_featured_benefits_grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .why_get_featured_benefit_card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
    }

    .why_get_featured_benefit_icon {
        width: 50px;
        height: 50px;
    }

    .why_get_featured_benefit_icon i {
        font-size: 22px;
    }

    .why_get_featured_free_badge {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .why_get_featured_free_icon {
        width: 60px;
        height: 60px;
    }

    .why_get_featured_free_icon i {
        font-size: 28px;
    }

    .why_get_featured_free_text h4 {
        font-size: var(--paragraph-medium-size);
    }
}

/* How to Apply Section Start */
.how_to_apply_section {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 60px 0;
}

.how_to_apply_heading {
    font-size: var(--heading-1-size);
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.how_to_apply_heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.how_to_apply_subtitle {
    text-align: center;
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how_to_apply_content_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.how_to_apply_email_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-secondary-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(11, 46, 51, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.how_to_apply_email_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.how_to_apply_email_label {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how_to_apply_email_address {
    font-size: 24px;
    font-weight: var(--heading-3-weight);
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.how_to_apply_email_address i {
    font-size: 28px;
}

.how_to_apply_email_btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: var(--paragraph-medium-size);
    font-weight: var(--paragraph-medium-weight);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 10px;
}

.how_to_apply_email_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.3);
    color: var(--background-white);
}

.how_to_apply_requirements {

    margin-bottom: 30px;
}

.how_to_apply_requirement_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.how_to_apply_requirement_card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 46, 51, 0.12);
}

.how_to_apply_card_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.how_to_apply_card_icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-white);
    font-size: 20px;
}

.how_to_apply_card_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin: 0;
}

.how_to_apply_card_content {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.6;
}

.how_to_apply_include_list {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.how_to_apply_include_title {
    font-size: var(--heading-3-size);
    font-weight: var(--heading-3-weight);
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.how_to_apply_include_title i {
    color: var(--primary-color);
}

.how_to_apply_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how_to_apply_list_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-dark);
    line-height: 1.6;
}

.how_to_apply_list_item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.how_to_apply_note_card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(45, 212, 191, 0.12) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.how_to_apply_note_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.how_to_apply_note_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.how_to_apply_note_icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.how_to_apply_note_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin: 0;
}

.how_to_apply_note_text {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    padding-left: 34px;
}

/* What Can Be Featured Section Start */
.what_can_be_featured_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.what_can_be_featured_heading {
    font-size: var(--heading-1-size);
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.what_can_be_featured_heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.what_can_be_featured_subtitle {
    text-align: center;
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-muted);
    margin-bottom: 40px;
}






.what_can_be_featured_cta_banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.2);
}

.what_can_be_featured_cta_banner i {
    font-size: 28px;
    color: var(--background-white);
}

.what_can_be_featured_cta_banner p {
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--background-white);
    margin: 0;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .what_can_be_featured_section {
        padding: 40px 0;
    }

    .what_can_be_featured_heading {
        font-size: 24px;
    }



    .what_can_be_featured_cta_banner {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .what_can_be_featured_cta_banner i {
        font-size: 24px;
    }

    .what_can_be_featured_cta_banner p {
        font-size: var(--paragraph-normal-size);
    }
}

/* What We Look For Section Start */
.what_we_look_for_section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(45, 212, 191, 0.08) 100%);
    padding: 60px 0;
}

.what_we_look_for_heading {
    font-size: var(--heading-1-size);
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.what_we_look_for_heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.what_we_look_for_subtitle {
    text-align: center;
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.what_we_look_for_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.what_we_look_for_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(11, 46, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.what_we_look_for_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 0 0 14px 14px;
}

.what_we_look_for_card:hover::after {
    transform: scaleX(1);
}

.what_we_look_for_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.what_we_look_for_icon_circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.what_we_look_for_card:hover .what_we_look_for_icon_circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(31, 111, 120, 0.3);
}

.what_we_look_for_icon_circle i {
    font-size: 26px;
    color: var(--background-white);
}

.what_we_look_for_card_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.what_we_look_for_card_desc {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.what_we_look_for_quality_banner {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 35px 40px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.15);
}

.what_we_look_for_quality_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(201, 162, 77, 0.3);
}

.what_we_look_for_quality_icon i {
    font-size: 32px;
    color: var(--background-white);
}

.what_we_look_for_quality_text h4 {
    font-size: var(--heading-3-size);
    font-weight: var(--heading-3-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.what_we_look_for_quality_text p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .what_we_look_for_grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .what_we_look_for_section {
        padding: 40px 0;
    }

    .what_we_look_for_heading {
        font-size: 24px;
    }

    .what_we_look_for_grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .what_we_look_for_card {
        padding: 25px 20px;
    }

    .what_we_look_for_quality_banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .what_we_look_for_quality_icon {
        width: 60px;
        height: 60px;
    }

    .what_we_look_for_quality_icon i {
        font-size: 28px;
    }

    .what_we_look_for_quality_text h4 {
        font-size: var(--paragraph-medium-size);
    }
}

@media (max-width: 768px) {
    .how_to_apply_section {
        padding: 40px 0;
    }

    .how_to_apply_heading {
        font-size: 24px;
    }

    .how_to_apply_email_address {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .how_to_apply_requirements {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .how_to_apply_requirement_card {
        padding: 20px;
    }

    .how_to_apply_email_card,
    .how_to_apply_include_list,
    .how_to_apply_note_card {
        padding: 20px;
    }

    .how_to_apply_note_text {
        padding-left: 0;
        margin-top: 10px;
    }
}

/* Hero Section */
.hero_section {
    position: relative;
    background: linear-gradient(135deg,
            rgba(31, 111, 120, 0.95) 0%,
            rgba(15, 63, 70, 0.98) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center / cover;
    padding: 100px 0 80px;
    text-align: center;
    animation: fadeInDown 0.8s ease forwards;
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
            rgba(201, 162, 77, 0.2),
            transparent 50%);
    pointer-events: none;
}

.hero_content {
    position: relative;
    z-index: 1;
}

.hero_main_heading {
    font-size: 48px;
    font-weight: var(--heading-1-weight);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero_subtitle {
    font-size: var(--paragraph-large-size);
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero_stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero_stat {
    text-align: center;
}

.hero_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.hero_stat_label {
    font-size: var(--paragraph-small-size);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero_main_heading {
        font-size: 36px;
    }

    .hero_stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero_section {
        padding: 80px 0 60px;
    }

    .hero_main_heading {
        font-size: 28px;
    }

    .hero_stat_number {
        font-size: 28px;
    }
}

/* Content Wrapper */
.content_section {
    padding: 60px 0;
    background-color: var(--background-white);
}

/* CTA Section */
.cta_section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    padding: 50px 20px;
    text-align: center;
    border-radius: 16px;
    animation: fadeIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.cta_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800') center/cover;
    opacity: 0.1;
    border-radius: 50%;
}

.cta_section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.cta_section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
}

/* CTA Button */
.cta_button {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta_button:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.cta_button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta_button:hover i {
    transform: translateX(4px);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta_section {
        padding: 40px 20px;
    }
}

/* What Can Be Featured Section  */

.feature_tiles_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature_tile {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);

    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 46, 51, 0.08);
    border: 1.5px solid var(--secondary-color);
}

.feature_tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature_tile:hover::before {
    opacity: 1;
}

.feature_tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(31, 111, 120, 0.25);
}

.feature_tile>* {
    position: relative;
    z-index: 1;
}

.feature_tile:hover .feature_tile_title,
.feature_tile:hover .feature_tile_description,
.feature_tile:hover .feature_tile_link {
    color: var(--background-white);
}

.feature_icon_wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--background-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 120, 0.1);
}

.feature_tile:hover .feature_icon_wrapper {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
}

.get_involved_icon {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature_tile_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature_tile_description {
    font-size: var(--paragraph-small-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.feature_tile_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: var(--paragraph-small-size);
    font-weight: var(--paragraph-medium-weight);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background-color: var(--background-white);
    border-radius: 20px;
    margin-top: 5px;
}

.feature_tile:hover .feature_tile_link {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature_tile_link:hover {
    gap: 12px;
}

.feature_tile_link i {
    transition: transform 0.3s ease;
}

.feature_tile:hover .feature_tile_link i {
    transform: translateX(5px);
}

/* Specific tile colors - removed as we're using gradient on hover */

@media (max-width: 992px) {
    .feature_tiles_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .get_involved_section {
        padding: 40px 0;
    }

    .get_involved_heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .feature_tiles_container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature_tile {
        padding: 20px 15px;
    }

    .feature_icon_wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .get_involved_icon {
        font-size: 24px;
    }
}

.application_steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}
.step_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.step_card:hover {
    box-shadow: 0 6px 18px rgba(31, 111, 120, 0.12);
    border-color: var(--primary-color);
}

.step_number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step_number span {
    font-size: 24px;
    font-weight: 700;
    color: var(--background-white);
}

.step_content {
    flex: 1;
}

.step_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step_code {
    background: linear-gradient(135deg, rgba(31, 111, 120, 0.08), rgba(201, 162, 77, 0.08));
    border-left: 3px solid var(--primary-color);
    padding: 12px 18px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step_code .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.step_note {
    font-size: var(--paragraph-small-size);
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.step_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    line-height: 1.6;
}

.step_list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.application_note_card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(45, 212, 191, 0.12) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note_icon_wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.note_icon_wrapper i {
    font-size: 26px;
    color: var(--background-white);
}

.note_text_content h4 {
    font-size: var(--heading-3-size);
    font-weight: var(--heading-3-weight);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.note_text_content p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .application_steps {
        gap: 20px;
    }

    .step_card {
        flex-direction: column;
        padding: 20px;
    }

    .step_number {
        width: 45px;
        height: 45px;
    }

    .step_number span {
        font-size: 20px;
    }
}