/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1A3636;
    background-color: #F0F8FF; /* Light blue background */
    line-height: 1.6;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #5A9BD8; /* Light blue header */
    color: #F9F9F9;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Services Section */
.services {
    margin: 40px 0;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    color: #3C6E8F; /* Medium blue for heading */
    margin-bottom: 20px;
}

.services ul {
    list-style-type: none;
}

.services li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 20px;
    background-color: #3C6E8F; /* Darker blue for contact section */
    color: white;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact .call-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #5A9BD8; /* Lighter blue for call button */
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.contact .call-button:hover {
    background-color: #1A74C4; /* Dark blue hover */
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1A74C4; /* Dark blue for footer */
    color: white;
    margin-top: 40px;
}

footer a {
    color: #D6BD98;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Styling */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .services h2, .contact h2 {
        font-size: 1.5rem;
    }

    .contact .call-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
