@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    background: #f9fafb;
    box-sizing: border-box;
    width: 100%;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    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;
    text-align: left;
}

.management-gallery {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.gallery-item h3 {
    font-size: 1.4rem;
    color: #005b2e;
    margin: 1rem 0 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.gallery-item .position {
    font-size: 1.1rem;
    color: #333;
    margin: 0 1rem 1rem;
    font-family: 'Roboto', sans-serif;
}

.bio {
    padding: 1rem;
    text-align: left;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.bio p {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.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;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .hero-section {
        height: 60vh;
        min-height: 350px;
        border-radius: 10px;
    }

    .hero-text-section {
        padding: 1.5rem;
        max-width: 90%;
        transform: translateY(-40px);
    }

    .hero-text-section h1 {
        font-size: 1.9rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-item h3 {
        font-size: 1.6rem;
    }

    .gallery-item .position {
        font-size: 1.2rem;
    }

    .bio p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .disclaimer-section {
        padding: 1.5rem;
        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.7rem;
    }

    .gallery-item h3 {
        font-size: 1.5rem;
    }
}