
/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #800020; /* Wine color */
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#banner {
    background-color: #f8f8f8;
    text-align: center;
    padding: 60px 20px;
}

#banner h1 {
    color: #800020;
    margin-bottom: 10px;
}

#home, #about, #contact {
    padding: 40px 20px;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1 1 30%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
}

footer {
    background-color: #800020;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 10px;
    }
}
