
.hidden-keywords {
    color: white;
    background-color: white;
    font-size: 0;
    position: absolute;
    left: -9999px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
}

.welcome {
    text-align: center;
    margin: 40px 0;
}

.welcome p {
    line-height: 1.6;
}

.services {
    text-align: left;
}

.services h1 {
    text-align: center;
    margin-bottom: 20px;
}

.service-list {
    margin: 0 auto;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.service-list .price {
    margin-left: 20px;
}

.contact {
    text-align: center;
}

.contact-details {
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.map-container {
    margin-top: 20px;
    text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    header img {
        height: 80px;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-list .price {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    header img {
        height: 60px;
    }

    main {
        padding: 10px;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
    }
}
