/* Career Page Styles */

.nav-link.active {
    color: #2c5530;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.career-hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

.career-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.career-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Openings Section */
.openings-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.openings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #2c5530;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin: 0;
}

.job-badge {
    background: #2c5530;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details {
    display: grid;
    gap: 1rem;
}

.job-requirement,
.job-location {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.job-requirement strong,
.job-location strong {
    color: #2c5530;
}

.job-description h4 {
    color: #2c5530;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.job-description ul {
    margin: 0.5rem 0 1rem 1rem;
    color: #555;
}

.job-description li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Application Section */
.application-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.application-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.application-content h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.application-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.email-contact {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.email-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.application-note {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: 3rem;
}

.application-note p {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.application-note ul {
    color: #555;
    line-height: 1.6;
}

.application-note li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .email-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .career-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .openings-section h2,
    .benefits-section h2,
    .application-content h2 {
        font-size: 2rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .application-note {
        padding: 1.5rem;
    }
}

