@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #f9fafb;
    flex: 1;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50px);
}

.hero-text-section h1 {
    font-size: 2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.hero-cta {
    display: inline-block;
    background-color: #005b2e;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #003018;
    transform: scale(1.05);
}

.job-section {
    margin: 3rem 0;
}

.job-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.job-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.job-content h3 {
    font-size: 1.4rem;
    color: #005b2e;
    margin: 1rem 0 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.job-content p {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
}

.job-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.job-content ul li {
    font-size: 1.1rem;
    color: #666;
    margin: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

.job-content ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #005b2e;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #666;
    margin: 0.5rem 0;
}

.contact-info li i {
    color: #00a650;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.contact-info li a {
    color: #005b2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #003018;
}

.disclaimer-section {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem 1rem;
        margin: 0;
        max-width: 100%;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
        border-radius: 12px;
    }

    .hero-text-section {
        padding: 1.5rem;
        max-width: 90%;
        transform: translateY(-40px);
        margin: 0 auto;
    }

    .hero-text-section h1 {
        font-size: 1.8rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 0.75rem 1.8rem;
        font-size: 1.1rem;
    }

    .job-section {
        margin: 2rem 0;
    }

    .job-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .job-content h2 {
        font-size: 1.7rem;
    }

    .job-content h3 {
        font-size: 1.3rem;
    }

    .job-content p,
    .job-content ul li {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .contact-info li {
        font-size: 1.05rem;
    }

    .disclaimer-section {
        padding: 1.5rem;
        border-radius: 12px;
        margin: 2rem 0;
    }

    .disclaimer-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.2rem;
    }

    .hero-text-section h1 {
        font-size: 1.6rem;
    }

    .hero-text-section p {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.65rem 1.5rem;
        font-size: 1rem;
    }

    .job-content {
        padding: 1.2rem;
    }

    .job-content h2 {
        font-size: 1.5rem;
    }

    .job-content p,
    .job-content ul li {
        font-size: 1rem;
    }
}