* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    color: #333;
}
.navbar {
    background-color: #0056b3;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.navbar h1 {
    margin-left: 20px;
    font-size: 1.5em;
}
.navbar ul {
    list-style: none;
    display: flex;
}
.navbar ul li {
    margin-right: 20px;
}
.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}
.navbar ul li a:hover {
    background-color: #003a75;
    border-radius: 5px;
}
.container {
    text-align: center;
    padding: 50px 20px;
    background-color: #60b244;
    color: white;
}
.container h1 {
    font-size: 3em;
}
.container h2 {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 30px;
}
.location {
    text-align: center;
    margin: 30px 0;
    color: #0056b3;
}
.services-button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}
.services-button:hover {
    background-color: darkred;
}
.services-section {
    background-color: white;
    padding: 50px 10px;
    text-align: center;
}
.services-section h2 {
    font-size: 2em;
    color: #333;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}
.service-box {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-box:hover {
    transform: scale(1.05);
}
.service-box img {
    max-width: 50px;
    margin-bottom: 15px;
}
.service-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #0056b3;
}
.service-box p {
    font-size: 0.9em;
    color: #666;
}
/* Footer Styles */
.footer {
    background-color: #0056b3;
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact, .footer-social {
    margin-bottom: 20px;
}

.footer-contact h3, .footer-social h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-contact p, .footer-social a {
    font-size: 1em;
    margin: 8px 0;
    color: #f1f1f1;
}

.footer-contact a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icon {
    margin: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    filter: invert(1);
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact, .footer-social {
        text-align: center;
    }

    .social-icon {
        margin: 5px;
    }
}
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}