/* Hero Section */
.internship_hero_section {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 80px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.internship_hero_title {
    font-size: 48px;
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.internship_hero_subtitle {
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-large-weight);
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
    max-width: 800px;
}

.internship_highlight_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--background-white);
    border: 2px solid var(--secondary-color);
    padding: 8px 16px;
    border-radius: 25px;
    margin: 5px;
    font-size: var(--paragraph-small-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-dark);
}

.internship_highlight_badge i {
    color: var(--secondary-color);
}

.internship_cta_btn {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 14px 32px;
    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: 20px;
}

.internship_cta_btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.3);
    color: var(--background-white);
}

/* Roles Section */
.internship_roles_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.internship_section_heading {
    font-size: var(--heading-1-size);
    font-weight: var(--heading-1-weight);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.internship_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;
}

.internship_role_card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 2px solid var(--border-secondary-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.internship_role_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.internship_role_card:hover::before {
    transform: scaleY(1);
}

.internship_role_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 111, 120, 0.15);
    border-color: var(--primary-color);
}

.internship_role_header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.internship_role_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;
    color: var(--background-white);
    font-size: 24px;
    flex-shrink: 0;
}

.internship_role_title {
    font-size: var(--heading-3-size);
    font-weight: var(--heading-3-weight);
    color: var(--text-dark);
    margin-bottom: 5px;
}

.internship_role_subtitle {
    font-size: var(--paragraph-normal-size);
    color: var(--text-muted);
    font-weight: var(--paragraph-normal-weight);
}

.internship_role_description {
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.internship_subsection_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.internship_list {
    list-style: none;
    padding-left: 0;
}

.internship_list li {
    font-size: var(--paragraph-normal-size);
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.internship_list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

.internship_apply_btn {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-medium-weight);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 15px;
}

.internship_apply_btn:hover {
    background-color: var(--accent-dark);
    transform: translateX(5px);
    color: var(--background-white);
}

/* Benefits Section */
.internship_benefits_section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(45, 212, 191, 0.08) 100%);
    padding: 60px 0;
}

.internship_benefits_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.internship_benefit_card {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.internship_benefit_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.12);
    border-color: var(--primary-color);
}

.internship_benefit_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-white);
    font-size: 24px;
}

.internship_benefit_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.internship_benefit_desc {
    font-size: var(--paragraph-small-size);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Details Section */
.internship_details_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.internship_details_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.internship_detail_card {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 2px solid var(--border-secondary-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.internship_detail_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31, 111, 120, 0.12);
    border-color: var(--primary-color);
}

.internship_detail_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-white);
    font-size: 24px;
}

.internship_detail_title {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.internship_detail_value {
    font-size: var(--heading-4-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.internship_detail_desc {
    font-size: var(--paragraph-small-size);
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.internship_final_cta {
    background-color: var(--background-white);
    padding: 60px 0;
    text-align: center;
}

.internship_final_cta_title {
    font-size: var(--heading-2-size);
    font-weight: var(--heading-2-weight);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.internship_final_cta_text {
    font-size: var(--paragraph-large-size);
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .internship_hero_title {
        font-size: 32px;
    }

    .internship_hero_section {
        padding: 50px 0 40px;
    }

    .internship_section_heading {
        font-size: 24px;
    }

    .internship_role_header {
        flex-direction: column;
        gap: 15px;
    }

    .internship_role_card {
        padding: 20px;
    }

    .internship_benefits_grid {
        grid-template-columns: 1fr;
    }
}

/* Write for Us Hero Section */
.write_for_us_hero {
    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-1455390582262-044cdead277a?w=1600&q=80') center / cover;
    padding: 50px 0 50px;
    text-align: center;
    animation: fadeInDown 0.8s ease forwards;
    overflow: hidden;
}

.write_for_us_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
            rgba(201, 162, 77, 0.2),
            transparent 50%);
    pointer-events: none;
}

.write_for_us_hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--secondary-color),
            var(--primary-color),
            var(--secondary-color),
            transparent);
}

.hero_content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 77, 0.2);
    border: 1px solid rgba(201, 162, 77, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    animation: fadeIn 1s ease 0.3s both;
}

.hero_badge i {
    color: var(--secondary-color);
    font-size: 16px;
}

.hero_badge span {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--paragraph-small-size);
    font-weight: var(--paragraph-medium-weight);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.write_for_us_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);
    line-height: 1.2;
    animation: fadeIn 1s ease 0.5s both;
}

.write_for_us_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;
    animation: fadeIn 1s ease 0.7s both;
}

.hero_highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    padding: 25px 30px;
    margin: 0px auto 35px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease 0.9s both;
}

.hero_highlight i {
    font-size: 28px;
    color: var(--background-white);
}

.hero_highlight p {
    font-size: var(--paragraph-large-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--background-white);
    margin: 0;
}

.hero_features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeIn 1s ease 1.1s both;
}

.hero_feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero_feature_icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero_feature:hover .hero_feature_icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.hero_feature_icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.hero_feature_text {
    text-align: left;
}

.hero_feature_label {
    font-size: var(--paragraph-small-size);
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 2px;
}

.hero_feature_value {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--paragraph-medium-weight);
    color: var(--background-white);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Who Should Apply Section */
.who_should_apply_section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(45, 212, 191, 0.08) 100%);
    padding: 60px 0;
}

.who_should_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;
}

.who_should_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;
}

.who_should_apply_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: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.applicants_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.applicant_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(11, 46, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.applicant_number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(31, 111, 120, 0.08);
    line-height: 1;
}

.applicant_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;
}

.applicant_card:hover::after {
    transform: scaleX(1);
}

.applicant_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(31, 111, 120, 0.18);
    border-color: var(--primary-color);
}

.applicant_icon_circle {
    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;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.25);
}

.applicant_card:hover .applicant_icon_circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(31, 111, 120, 0.35);
}

.applicant_icon_circle i {
    font-size: 32px;
    color: var(--background-white);
}

.applicant_title {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.applicant_desc {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* How to Apply Section */
.how_to_apply_section {
    background-color: var(--background-white);
    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: 35px;
    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: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.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;
}

.how_to_apply_email_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.3);
    color: var(--background-white);
}

.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;
}

/* What You Get Section */
.what_you_get_section {
    background-color: var(--background-white);
    padding: 60px 0;
}

.what_you_get_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_you_get_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_you_get_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: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.benefits_layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.benefits_image_wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 46, 51, 0.15);
    position: sticky;
    top: 100px;
}

.benefits_image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.benefits_image_wrapper:hover .benefits_image {
    transform: scale(1.05);
}

.image_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 111, 120, 0.85), rgba(201, 162, 77, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefits_image_wrapper:hover .image_overlay {
    opacity: 1;
}

.overlay_badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--background-white);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.benefits_image_wrapper:hover .overlay_badge {
    transform: translateY(0);
}

.overlay_badge i {
    font-size: 48px;
}

.overlay_badge span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.benefits_content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit_card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
    position: relative;
    overflow: hidden;
}

.benefit_card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.benefit_card:hover::before {
    transform: scaleY(1);
}

.benefit_card:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.12);
    border-color: var(--primary-color);
}

.benefit_icon_box {
    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;
    transition: transform 0.3s ease;
}

.benefit_card:hover .benefit_icon_box {
    transform: scale(1.1) rotate(-5deg);
}

.benefit_icon_box i {
    font-size: 22px;
    color: var(--background-white);
}

.benefit_text h4 {
    font-size: var(--paragraph-medium-size);
    font-weight: var(--heading-4-weight);
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.benefit_text p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.unpaid_notice {
    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: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.unpaid_notice i {
    font-size: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.unpaid_notice p {
    font-size: var(--paragraph-normal-size);
    font-weight: var(--paragraph-normal-weight);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.unpaid_notice strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .applicants_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits_layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits_image_wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .write_for_us_hero {
        padding: 80px 0 60px;
    }

    .write_for_us_main_heading {
        font-size: 28px;
    }

    .write_for_us_subtitle {
        font-size: var(--paragraph-normal-size);
    }

    .hero_highlight {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .hero_features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .applicants_grid {
        grid-template-columns: 1fr;
    }

    .benefits_content {
        gap: 15px;
    }

    .benefit_card {
        flex-direction: column;
        gap: 12px;
    }

    .unpaid_notice {
        flex-direction: column;
        text-align: center;
    }
}