/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    text-align: center;
    padding: 20px 0;
}

#navbar {
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

#navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

#navbar li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#navbar li a:hover {
    background-color: #fff;
    color: #c00;
}

#logo img {
    max-width: 100%;
    height: auto;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#intro {
    text-align: center;
    margin-bottom: 40px;
}

#intro h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

#services ul {
    list-style: none;
    margin: 20px 0;
}

#services li {
    margin: 10px 0;
}

#services li a {
    color: #c00;
    text-decoration: none;
}

#gallery .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#gallery img {
    max-width: 100%;
    height: auto;
}

#map iframe {
    max-width: 100%;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

#contact p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #navbar ul {
        flex-direction: column;
        text-align: center;
    }

    #navbar li a {
        padding: 10px;
    }

    #intro h1 {
        font-size: 1.8em;
    }

    #map iframe {
        width: 100%;
        height: 300px;
    }
}