body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #004080; /* Dark Blue */
    color: white;
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #e0f2fe;
}

h2 {
    color: #004080;
    margin-bottom: 15px;
}

h3 {
    color: #0069c0;
    margin-bottom: 10px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f0f8ff; /* Light Blue */
}

.hero img {
    max-width: 50%;
    height: auto;
    border: 5px solid #004080;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 40%;
    padding-left: 20px;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background-color: #e0f2fe; /* Lighter Blue */
    padding: 20px;
    border-radius: 8px;
}

.call-button, .cta-button {
    background-color: #ff6347; /* Tomato */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.call-button:hover, .cta-button:hover {
    background-color: #e65100; /* Darker Orange */
}

.call-to-action {
    background-color: #b0e0e6; /* Powder Blue */
    text-align: center;
    padding: 40px 20px;
}

footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero img, .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-content {
        margin-top: 20px;
    }
}