body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(44, 62, 80, 0.12);
    padding: 36px 32px 32px 32px;
    margin-top: 40px;
}
.logo {
    width: 180px;
    margin-bottom: 32px;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d5c2f;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #555;
}
.contact {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
    padding: 28px 36px;
    margin-bottom: 32px;
    text-align: center;
}
.contact p {
    margin: 10px 0;
    font-size: 1.1rem;
}
.contact strong {
    color: #2d5c2f;
}
.footer {
    width: 100%;
    background: #e0e7ef;
    color: #222;
    text-align: center;
    padding: 18px 0 10px 0;
    position: relative;
    border-top: 2px solid #2d5c2f;
}
.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}
@media (max-width: 900px) {
    .hero-img {
        height: 50vh;
    }
    .hero-overlay {
        max-width: 95vw;
        padding: 24px 8px 18px 8px;
    }
    .logo {
        width: 140px;
    }
    h1 {
        font-size: 2rem;
    }
}
