@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

button, body {
    font-family: "Merriweather", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p{
    font-size: 14px;
    line-height: 26px;
}
.container {
    width: 1140px;
    margin: auto;
}

header {
    width: 100%;
    background-color: rgba(0,0 , 0, 0.3);
    position: fixed;
    z-index: 2;
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 10px 0; 
}

header .logo {
    display: flex;
    align-items: center;
    margin-right: 0px; 
    margin-left: 30px; 
}

header .logo img {
    height: 70px; 
    width: auto;  
}

header nav {
    display: flex;
    justify-content: center;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    display: inline-block;
    height: 75px;
    line-height: 75px;
    padding: 0 20px; 
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: white;
    position: relative; 
    white-space: nowrap;
    transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s ease; 
}

header nav ul li a:hover {
    transform: scale(1.1);
    color: green;
}

.contact-banner {
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cG9vciUyMGNoaWxkfGVufDB8fDB8fHww') no-repeat center center/cover;
    height: 600px;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.contact-banner-content {
    max-width: 800px;
    margin: auto;
}

.contact-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    margin-top: 150px;
}

.contact-banner p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: #f1f1f1;
}


.contact-form-wrapper {
    padding: 50px 20px;
    background-color: lightgoldenrodyellow;
    text-align: center;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 70%; 
    margin: 50px auto; 
}

.contact-form-content {
    max-width: 800px;
    margin: auto;
}

.contact-form-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: black;
}

.contact-form-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 30px;

}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    font-size: 1.1rem;
    color: black;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    font-size: 1rem;
    border: 1px;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: green;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: darkgreen;
}

.contact-persons {
    margin-top: 30px;
    font-size: 1.1rem;
    text-align: left;
}

.contact-persons a {
    color: green;
    text-decoration: none;
}

.contact-persons a:hover {
    text-decoration: underline;
}
.error-message {
    color: red;
    font-size: 0.9rem;
    display: none;
}


.faq-section {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.faq-content {
    max-width: 800px;
    margin: auto;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: orange;
    color: white;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.faq-question:hover {
    background-color: green;
}

.faq-answer {
    padding: 20px;
    display: none;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.faq-item:hover .faq-answer {
    display: block;
}

.faq-item:hover .faq-question {
    background-color: gold;
}

.location-section {
    padding: 50px 20px;
    background-color: whitesmoke;
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: auto;
}

.location-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.location-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.map-container {
    margin-top: 30px;
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* Footer Section Styling */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-logo {
    flex: 1;
    margin: 10px;
}

.footer-logo img {
    width: 180px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #27ae60;
    margin-top: 10px;
}

.footer-links {
    flex: 1;
    margin: 10px;
    min-width: 250px;
    color: #27ae60;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: #27ae60;
}

/* Contact Section */
.footer-contact {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-contact ul {
    list-style-type: none;
    padding: 0;
}

.footer-contact ul li {
    margin: 10px 0;
    color: #ecf0f1;
    font-size: 1rem;
}

.footer-contact ul li span {
    font-weight: bold;
    color: #bdc3c7;
}

/* Newsletter Section */
.footer-newsletter {
    flex: 1;
    margin: 10px;
    min-width: 250px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
}

.footer-newsletter input {
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.footer-newsletter button {
    padding: 12px;
    background-color: #27ae60;
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #2ecc71;
}

.footer-bottom {
    background-color: #34495e;
    padding: 15px 0;
}

.footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }

    header .logo img {
        height: 60px;
    }

    header nav ul li a {
        font-size: 14px;
        height: 60px;
        line-height: 60px;
    }

    .contact-banner {
        height: 500px;
    }

    .contact-banner h1 {
        font-size: 2rem;
    }

    .contact-banner p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        width: 80%;
    }

    .contact-form-wrapper h1 {
        font-size: 2rem;
    }

    .faq-section h1, .location-section h1 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-links ul li a, .footer-contact ul li, .footer-newsletter input, .footer-newsletter button {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        padding: 10px 20px;
    }

    header .logo {
        margin: 0 auto 10px;
    }

    header nav ul {
        flex-direction: row; /* Keep navigation items in a horizontal row */
        justify-content: space-around; /* Space out items evenly */
        width: 100%;
    }

    header nav ul li {
        margin: 0px;
    }
    header nav ul li a {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 0 10px; /* Reduce padding */
        height: auto; /* Allow flexible height */
        line-height: normal; /* Adjust line height */
    }

    .contact-banner {
        height: 400px;
    }

    .contact-banner h1 {
        font-size: 1.8rem;
    }

    .contact-banner p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        width: 90%;
        padding: 30px 10px;
    }

    .contact-form-wrapper h1 {
        font-size: 1.8rem;
    }

    .faq-section, .location-section {
        padding: 30px 10px;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo, .footer-links, .footer-contact, .footer-newsletter {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    header nav ul li a {
        font-size: 12px;
        padding: 0 5px;
    }
    header nav ul {
        flex-wrap: wrap; /* Allow wrapping if space is limited */
    }

    .contact-banner {
        height: 300px;
    }

    .contact-banner h1 {
        font-size: 1.5rem;
    }

    .contact-banner p {
        font-size: 0.8rem;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 20px 10px;
    }

    .contact-form-wrapper h1 {
        font-size: 1.5rem;
    }

    .faq-section h1, .location-section h1 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.8rem;
    }

    .faq-answer {
        font-size: 0.7rem;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-links ul li a, .footer-contact ul li, .footer-newsletter input, .footer-newsletter button {
        font-size: 0.8rem;
    }
}