/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set the background color */
body {
    background-color: #a1b94b;
    font-family: Arial, sans-serif;
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #a1b94b;
    flex-direction: column;
}

.logo img {
    max-height: 80px;
}

.title h1 {
    font-size: 36px;
    color: darkgreen;
    text-align: center;
    margin-top: 10px;
}

.title h2 {
    font-size: 24px;
    color: green;
    text-align: center;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    background-color: #a1b94b;
    justify-content: center;
    padding: 10px;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: green;
    font-size: 18px;
}

nav a:hover {
    color: darkgreen;
}

nav a.active {
    font-weight: bold;
}

/* Main Section Styles */
main {
    padding: 20px;
    text-align: center;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid green;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: darkgreen;
}

/* Footer Styles */
footer {
    background-color: #a1b94b;
    padding: 20px;
    text-align: center;
}

.contact-details p {
    color: green;
    font-size: 16px;
}

.social-links a {
    color: green;
    font-size: 16px;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    color: darkgreen;
}

/* Media Query for Responsiveness */
@media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens here */
    header {
        padding: 10px;
    }

    .title h1 {
        font-size: 24px;
    }

    .title h2 {
        font-size: 18px;
    }

    nav ul {
        padding: 5px;
    }

    nav li {
        margin-right: 10px;
    }

    nav a {
        font-size: 16px;
    }

    main {
        padding: 10px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 14px;
    }

    input[type="submit"] {
        font-size: 16px;
    }

    footer {
        padding: 10px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .social-links a {
        font-size: 14px;
    }
}
