body, h1, h2, h3, p, ul, ol, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e6e6e6;
    color: #009198;
    line-height: 1.6;
}

#page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #00c2cb;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,194,203,0.04);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.site-logo img {
    max-width: 150px;
    height: auto;
    width: 100%;
    border-radius: 8px;
    background: #e6e6e6;
    padding: 4px;
    display: block;
}

@media (max-width: 600px) {
    .site-logo img {
        max-width: 50px;
    }
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .site-nav a:hover,
    .site-nav a:focus {
        color: #00f3fe;
    }

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,194,203,0.07);
    max-width: 900px;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    gap: 2rem;
    border: 1px solid #e6e6e6;
}

.site-header,
.hero-section {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
}

.hero-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertical centering within parent */
    gap: 1.5rem; /* space between images */
}

.hero-photo img {
    width: 100%;
    max-width: 500px; /* Reduced from 800px */
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,194,203,0.08);
    background: #e6e6e6;
}

@media (max-width: 900px) {
    .hero-photo img {
        width: 350px;    /* Increased from 300px */
        height: 440px;   /* Increased from 380px */
        width: 350px;    /* Increased from 300px */
        height: 440px;   /* Increased from 380px */
            }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero-text h1 {
        font-size: 2.2rem;
        color: #009198;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .hero-text p {
        font-size: 1.15rem;
        color: #009198;
        margin-bottom: 0.5rem;
    }

footer {
    background: #00c2cb;
    color: #ffffff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    margin-top: auto;
    box-shadow: 0 -2px 8px rgba(0,194,203,0.03);
}

.contact-address {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,194,203,0.1);
    text-align: center;
    line-height: 1.4;
}

.contact-address h2 {
    font-size: 1.8rem;
    color: #009198;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-address p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .site-nav {
        margin-top: 1rem;
    }

    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 1.2rem;
    }

    .hero-photo img {
        width: 220px;
        height: 290px;
    }

    .map-container {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(0,194,203,0.07);
    }
}

@media (max-width: 900px) {
    .hero-photo img {
        max-width: 220px;
        height: auto;
    }
}
