* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: #193d24;
    font-family: "Trebuchet MS", Arial, sans-serif;
    background: #f4fbf5;
}
#titleee{
    color:#0f5129;
    font-size: clamp(1.2rem, 2vw, 2.5rem);
}

.site-header {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 4%;
    background: #4ce68c;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

#logo {
    width: clamp(110px, 15vw, 155px);
    max-height: 70px;
    object-fit: contain;
}

#headnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(0.75rem, 2vw, 2rem);
}

#headnav a {
    color: #fff;
    font-size: clamp(0.85rem, 1.4vw, 1.15rem);
    font-weight: 600;
    text-decoration: none;
}

.contact-main {
    width: min(900px, 92%);
    margin: auto;
    padding: 4rem 0;
}

.contact-panel {
    padding: clamp(1.5rem, 5vw, 4rem);
    background: #fff;
    border-left: 5px solid #e5a93d;
    box-shadow: 0 18px 45px rgba(23, 61, 39, 0.14);
}

.eyebrow {
    margin: 0 0 0.5rem;
    color: #19733c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 1rem;
    color: #176b38;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.contact-panel > p:not(.eyebrow) {
    max-width: 42rem;
    line-height: 1.7;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-options a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    color: #193d24;
    border: 1px solid #4ce68c;
    text-decoration: none;
}

.contact-options strong {
    color: #19733c;
}

.site-footer {
    padding: 1.5rem 4%;
    color: #c9e4cf;
    text-align: center;
    background: #19733c;
}

@media (max-width: 700px) {
    .site-header {
        min-height: 72px;
        padding: 0.75rem 1rem;
    }

    #headnav {
        gap: 0.5rem 0.9rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    #headnav {
        justify-content: flex-start;
    }
}
