/* Careers Page Styles */

/* Hero Section */
.careers_hero_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.careers_hero_title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.careers_hero_description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn_view_positions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #43c59e 0%, #3ab58c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_view_positions:hover {
    background: linear-gradient(135deg, #3ab58c 0%, #32a07d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 197, 158, 0.3);
    color: #ffffff;
    gap: 12px;
}

.careers_hero_image .image_placeholder {
    width: 100%;
    height: 400px;
    background: #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
}

.careers_hero_image .image_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Join Section */
.why_join_section {
    padding: 80px 0;
    background: #ffffff;
}

.section_header {
    margin-bottom: 48px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section_description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefit Cards */
.benefit_card {
    background: linear-gradient(135deg, #d4ede5 0%, #c8e9dd 100%);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(67, 197, 158, 0.2);
}

.benefit_icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit_description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Join CTA Section */
.join_cta_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4ede5 100%);
}

.cta_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta_description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .careers_hero_title {
        font-size: 2.5rem;
    }

    .section_title {
        font-size: 2rem;
    }

    .cta_title {
        font-size: 2rem;
    }

    .careers_hero_image .image_placeholder {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .careers_hero_section,
    .why_join_section,
    .join_cta_section {
        padding: 50px 0;
    }

    .careers_hero_title {
        font-size: 2rem;
        text-align: center;
    }

    .careers_hero_description {
        text-align: center;
    }

    .btn_view_positions {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .section_title {
        font-size: 1.75rem;
    }

    .cta_title {
        font-size: 1.75rem;
    }

    .benefit_card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .careers_hero_title {
        font-size: 1.75rem;
    }

    .section_title {
        font-size: 1.5rem;
    }

    .cta_title {
        font-size: 1.5rem;
    }

    .benefit_icon {
        width: 56px;
        height: 56px;
    }

    .benefit_icon svg {
        width: 28px;
        height: 28px;
    }
}
