/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #3D52A0; /* Dark blue */
}

a {
    color: #7091E6; /* Medium blue */
}

/* Header */
header {
    background-color: #EDE8F5; /* Lightest blue */
    padding: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 20px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border: 5px solid #8697C4; /* Light blue */
}

/* Services Section */
.services {
    padding: 20px;
}

.services ul {
    list-style: none;
    padding: 0;
}

/* Expertise Section */
.expertise {
    background-color: #ADBBDA; /* Light gray-blue */
    padding: 20px;
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 20px;
}

.call-button {
    display: inline-block;
    background-color: #7091E6; /* Medium blue */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #3D52A0; /* Dark blue */
}

/* Footer */
footer {
    background-color: #3D52A0; /* Dark blue */
    color: white;
    text-align: center;
    padding: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    .services, .expertise, .cta {
        padding: 10px;
    }
}