body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

main {
    padding: 20px;
}

.h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0056b3;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0056b3;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 5px solid #0056b3;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content {
    margin-top: 20px;
}

.call-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-block;
}

.services, .areas, .contact {
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
}