/* Hero Section */
.hero_section {
    position: relative;
    background-color: #1f6f78;
    background-image: linear-gradient(135deg,
            rgba(31, 111, 120, 0.92) 0%,
            rgba(15, 63, 70, 0.95) 100%),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    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;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* What You'll Do Section */
.what_youll_do_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.section_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;
}

.section_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;
}

.section_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;
    line-height: 1.7;
}

.responsibilities_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.responsibility_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.responsibility_card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 111, 120, 0.15);
}

.responsibility_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsibility_icon i {
    font-size: 22px;
    color: var(--background-white);
}

.responsibility_content h4 {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.responsibility_content p {
    font-size: var(--paragraph-normal-size);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.note_banner {
    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;
    max-width: 1000px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note_banner i {
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.note_banner p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* Who Can Apply Section */
.who_can_apply_section {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 60px 0;
}

.eligibility_list {
    max-width: 800px;
    margin: 0 auto;
}

.eligibility_item {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.eligibility_item:hover {
    border-color: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.2);
}

.eligibility_item i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.eligibility_item p {
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Benefits Section */
.benefits_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.benefits_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit_card {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(11, 46, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.benefit_card::before {
    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;
}

.benefit_card:hover::before {
    transform: scaleX(1);
}

.benefit_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.benefit_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.benefit_card:hover .benefit_icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit_icon i {
    font-size: 22px;
    color: var(--background-white);
}

.benefit_card h4 {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit_card p {
    font-size: var(--paragraph-small-size);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.unpaid_note {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    padding: 25px 30px;
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.25);
}

.unpaid_note p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--background-white);
    margin: 0;
    line-height: 1.7;
}

/* Duration Section */
.duration_section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(45, 212, 191, 0.08) 100%);
    padding: 60px 0;
}

.duration_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.duration_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 46, 51, 0.08);
}

.duration_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.duration_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.duration_icon i {
    font-size: 30px;
    color: var(--background-white);
}

.duration_card h4 {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.duration_card p {
    font-size: var(--paragraph-normal-size);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* How to Apply Section */
.how_to_apply_section {
    background-color: var(--background-white);
    padding: 60px 0;
}
.how_to_apply_section_description_wrapper {
    max-width: 900px;
    margin: 0 auto;

}
.apply_email_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-secondary-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(11, 46, 51, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.apply_email_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.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;
}

.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;
}

.apply_email_address i {
    font-size: 28px;
}

.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;
}

.apply_email_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.3);
    color: var(--background-white);
}

.application_requirements {
    max-width: 800px;
    margin: 0 auto;
}

.requirement_section {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.requirement_section h4 {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirement_section h4 i {
    color: var(--primary-color);
}

.requirement_section p {
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    background: var(--background-light);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 0 0 15px 0;
    font-weight: var(--paragraph-medium-weight);
}

.requirement_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    line-height: 1.6;
}

.requirement_list li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Final Note Section */
.final_note_section {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 60px 0;
}

.final_note_card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    border-radius: 16px;
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(31, 111, 120, 0.25);
    position: relative;
    overflow: hidden;
}

.final_note_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.final_note_content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final_note_icon {
    width: 60px;
    height: 60px;
    background-color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.final_note_icon i {
    font-size: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final_note_content h3 {
    font-size: var(--heading-2-size);
    font-weight: var(--heading-2-weight);
    color: var(--background-white);
    margin-bottom: 10px;
}

.final_note_content p {
    font-size: var(--paragraph-large-size);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta_section {
    background-color: var(--background-white);
    padding: 50px 20px;
    text-align: center;
}

.cta_button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 111, 120, 0.2);
}

.cta_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.3);
    color: var(--background-white);
}

.cta_button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta_button:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero_main_heading {
        font-size: 36px;
    }

    .responsibilities_grid,
    .benefits_grid,
    .duration_cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero_section {
        padding: 80px 0 60px;
    }

    .hero_main_heading {
        font-size: 28px;
    }

    .section_heading {
        font-size: 24px;
    }

    .responsibilities_grid,
    .benefits_grid,
    .duration_cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .note_banner,
    .unpaid_note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .apply_email_address {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .final_note_card {
        padding: 20px 20px;
    }

    .final_note_icon {
        width: 60px;
        height: 60px;
    }

    .final_note_icon i {
        font-size: 28px;
    }
}


.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;
    }
}