.career-intro {
    padding: 4rem 1rem;
    background-color: #fafafa;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.career-intro h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #222;
}

.highlight-red {
    color: #dc0000;
}

.career-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 3rem;
    text-align: justify;
}

.career-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.career-images img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .career-intro h1 {
        font-size: 2rem;
    }

    .career-images img {
        width: 100%;
        height: auto;
    }
}


.open-position {
    padding: 4rem 1rem;
    background-color: #fff;
}

.position-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.position-text {
    flex: 1 1 55%;
}

.position-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.position-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.position-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.highlight-red {
    color: #dc0000;
}

.position-image {
    flex: 1 1 40%;
}

.position-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .position-container {
        flex-direction: column;
    }

    .position-text h2 {
        text-align: center;
    }

    .position-image {
        text-align: center;
    }

    .position-image img {
        width: 90%;
        margin-top: 1.5rem;
    }
}


.position-text h3 {
    font-size: 1.3rem;
}

.position-text p {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .position-container {
        flex-direction: column;
    }

    .position-text {
        text-align: left;
    }

    .position-image img {
        width: 90%;
        margin-top: 1rem;
    }
}

.contact-cta {
    background-color: #7a7a7a;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-red {
    color: #dc0000;
}

.cta-button {
    font-family: 'Hammersmith One', sans-serif;
    display: inline-block;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .contact-cta h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}