* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Verdana pro", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensure body takes the full viewport height */
    margin: 0;
    background-color: var(--white);
    font-optical-sizing: auto;
    font-style: normal;
}

main {
    flex: 1;
    /* Makes the main content expand to fill available space */
}


:root {
    --primary-color: #a8cf45;
    --primary-color-dark: #0e844d;
    --text-dark: #333333;
    --white: #ffffff;
      --button: #0b3d26;
}
.title {
    font-size: 33px;
    color: var(--primary-color-dark);
    text-align: center;
    padding: 2rem 0%;
    margin-bottom: -40px;       
}


.btn {
    display: inline-block;
    margin-top: 0rem;
    padding: 6px 14px;
    font-size: 1.2rem;
    color: var(--white);
    border: none;
    background-color: var(--button);
    cursor: pointer;
    border-radius: .5rem;
    transition: background-color 0.3s;
}


.btn:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
     box-shadow: 0 0 10px var(--primary-color);
}



.contact .row {
    display: flex;
    gap: 2rem;
    padding: 2rem 5%;
    margin-bottom: 40px;
}

.contact .row form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid #333;
}

.contact .row form .box,
.contact .row form textarea {
    width: 98%;
    border-bottom: 1px solid #333 !important;
    margin-bottom: 10px;
    padding: 10px 10px;
    font-size: 1rem;
    color: #666;
    text-transform: none;
    border: #fff;
}

.contact .row form textarea {
    height: 10rem;
    resize: none;
}

.contact .row .map {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
    border-radius: .5rem;
    width: 100%;
}

@media (max-width:767px){
        .contact .row {
        display: block;
        margin-bottom: 0px;
    }
    .contact .row form{
        margin-bottom: 20px;
    }
}


