/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D6BD98;
    color: #1A3636;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #1A3636;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

header p {
    font-size: 1.2rem;
}

/* Section styles */
.service-info {
    padding: 20px;
    background-color: #40534C;
    color: white;
}

.service-info h2 {
    color: #D6BD98;
}

/* Contact section */
.contact {
    text-align: center;
    padding: 30px;
    background-color: #677D6A;
}

.contact h3 {
    color: #1A3636;
}

.call-button {
    background-color: #1A3636;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.call-button:hover {
    background-color: #40534C;
    color: #D6BD98;
}

/* Footer styles */
footer {
    background-color: #1A3636;
    color: white;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #D6BD98;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .call-button {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }

    .service-info, .contact {
        padding: 15px;
    }
}
