@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    min-height: 100vh;
}

header {
    width: 100%;
    background-color: #98D7C2;
    padding: 10px 0;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
}

.logo {
    width: 8.5rem; /* Size of the logo */
    height: auto; /* Maintain aspect ratio */
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

nav ul li {
    margin: 0 20px;
    font-weight: 300;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

nav ul li a.active, nav ul li a:hover {
    background: #2E765E;
    padding: .6rem .6rem;
    border-radius: 5px;
    color: #fff;
}

.btn{
    padding: .75rem 2.2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    background: #2E765E;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;

}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.content {
    margin-top: 20px; /* Adjust the margin as needed */
    padding: 0 2%;
    width: 100%;
}



/* Add this at the end of your existing CSS */
@media (max-width: 1139px) {
    nav {
        padding: 0 5%;
    }

    .nav_links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #e8f5e9;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav_links.active {
        display: flex;
    }

    .nav_links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Form Styles */
h1 {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 25px;
}

p {
    text-align: center;
    margin-bottom: 25px;
}

.form-container {
    width: 90%;
    max-width: 1200px; /* Adjust maximum width as needed */
    margin: auto;
    background-color: #fff; /* Background color for the form */
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Box shadow for the form */
    border-radius: 10px;
    margin-top: 20px; /* Optional: Adjust margin-top */
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%; /* Adjust width as needed */
    margin: auto;
    max-width: 1200px; /* Limit maximum width for larger screens */
}

.form-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow flex items to wrap */
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-small{
    margin-top: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; /* Adjust spacing between form groups */
    width: 48%;
}

.form-group.full-width {
    width: 100%;
}

.city-group {
    width: 32%; /* Adjusted width for City field */
}

.state-group {
    width: 30%; /* Adjusted width for State/Province field */
}

.zip-code-group {
    width: 30%; /* Adjusted width for Postal/Zip Code field */
}

input[type="text"], input[type="email"], textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
}

input[type="radio"] {
    margin-right: 5px;
}

small {
    font-size: 12px;
    color: #666;
    margin-top: -10px;
}

button.full-width {
    width: 100%;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #2E765E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

textarea {
    height: 80px;
    resize: none;
}

.dob-fields {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.dob-fields input {
    width: calc(30% - 5px); /* Adjusted width for DOB fields */
}

.gender-fields {
    display: flex;
    align-items: center;
}

.gender-fields label {
    margin-right: 10px;
}

.radio-group {
    display: flex;
    align-items: center;
}

.radio-group label {
    margin-right: 150px;
    white-space: nowrap;
}
@media (max-width: 1195px) {
    form {
        width: 90%;
        margin: auto;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .dob-fields input {
        width: 100%; /* Full width for DOB fields on smaller screens */
        margin-bottom: 10px; /* Adjust spacing */
    }

    textarea {
        height: 100px; /* Reduced height for Address textarea on smaller screens */
    }

    .form-group {
        width: 100%; /* Full width for form groups on smaller screens */
        margin-bottom: 10px; /* Adjusted margin for spacing */
    }

    .radio-group label {
        margin-right: 20px; /* Adjusted margin for smaller screens */
    }
}
     
@media (max-width: 640px) {
    .form-container {
        width: 100%;
        padding: 15px;
    }

    form {
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .dob-fields input {
        width: 100%; /* Full width for DOB fields on smaller screens */
        margin-bottom: 10px; /* Adjust spacing */
    }

    textarea {
        height: 100px; /* Reduced height for Address textarea on smaller screens */
    }

    .form-group {
        width: 100%; /* Full width for form groups on smaller screens */
        margin-bottom: 10px; /* Adjusted margin for spacing */
    }

    .radio-group label {
        margin-right: 10px; /* Adjusted margin for smaller screens */
        white-space: nowrap;
    }
}

@media (max-width: 500px) {

    .form-container {
        width: 100%;
        padding: 10px;
    }

    .radio-group {
        display: flex;
        flex-wrap: wrap;
    }

}

/* Footer section */
.footer {
    background-color: #1A4314;
    color: white;
    padding: 40px 20px;
    width: 100vw; /* Ensure it covers the full viewport width */
    margin-left: calc(50% - 50vw); /* Center align the full width background */
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1;
    margin: 40px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.quick-links, .contact-info {
    list-style: none;
    padding: 0;
}

.quick-links li, .contact-info li {
    margin-bottom: 10px;
}

.quick-links a, .contact-info a {
    color: white;
    text-decoration: none;
}

.quick-links a:hover, .contact-info a:hover {
    text-decoration: underline;
}

.contact-info a {
    display: inline-block;
    margin-right: 10px;
}

.contact-info i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #98D7C2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

 