body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.cta-buttons {
    margin-top: 1rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    margin: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.why-choose-us ul, .overview ul {
    list-style: disc;
    padding-left: 2rem;
}

.footer-cta {
    text-align: center;
    margin-top: 2rem;
}

footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer div {
    margin: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
}

form label {
    display: block;
    margin-top: 1rem;
}

form input, form textarea, form select {
    width: 100%;
    max-width: 500px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

details {
    margin: 1rem 0;
}

summary {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 0.5rem 0;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
}
