/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.dot {
    background-color: #fff;
    width: 25px;
    height: 3px;
    margin: 5px 0;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    font-size: 16px;
}

/* Main content */
main {
    padding: 20px 0;
}

section {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    width: 80%;
    margin: 0 auto;
}

.footer-social-media {
    margin-bottom: 20px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.footer-quick-links {
    margin-bottom: 20px;
}

.footer-quick-links a {
    display: block;
    margin: 5px 0;
    color: #fff;
}

/* Google Maps iframe */
.google-maps iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        border-radius: 5px;
        padding: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-container {
        width: 100%;
    }
}
