/* Join us section */
.join-us {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.join-us h2 {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.join-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.join-us .last-paragraph {
    margin-bottom: 0;
}

/* Job section headings */
.job-section-heading {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--success-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Job list */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Job item */
.job-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-height: 300px;
}

/* Job details */
.job-details {
    flex: 2;
}

/* Job image */
.job-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.job-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Job description lists */
.job-description-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.job-description-list li {
    margin-bottom: 0.5rem;
}

.job-requirements-list {
    padding-left: 1.5rem;
}

.job-requirements-list li {
    margin-bottom: 0.5rem;
}

/* Contact section */
.contact-section {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-section h2 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-section .email-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-section .last-paragraph {
    margin-bottom: 0;
}

/* Company environment section */
.company-environment-section {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.company-environment-section h2 {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.environment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.environment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.environment-item p {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Job description heading */
.job-description-heading {
    color: var(--secondary-color);
    margin: 1rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .join-us {
        margin: 0 auto 1rem;
    }

    .job-item {
        flex-direction: column;
    }

    .job-image {
        order: -1;
    }

    .environment-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}