/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #EDE8F5; /* Lightest color */
    color: #3D52A0; /* Darkest color for contrast */
}

h1, h2, h3 {
    font-weight: bold;
}

a {
    color: #3D52A0;
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: #3D52A0;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Hero Section Styles */
.hero-image {
  width: 100%;
  aspect-ratio: 3 / 2; /* Example aspect ratio, adjust as needed */
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 5px solid #7091E6; /* Medium blue border */
    margin-bottom: 1rem;
}

.hero-content {
    background-color: #ADBBDA; /* Light gray background */
    padding: 1rem;
    border-radius: 10px;
}

/* Button Styles */
.button {
    display: inline-block;
    background-color: #7091E6; /* Medium blue button */
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3D52A0; /* Darker blue on hover */
    cursor: pointer;
}

/* Services Section Styles */
.services {
    padding: 2rem;
}

.services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 1rem;
}

.services li {
    background-color: #8697C4; /* Lighter gray background */
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

/* Why Us Section Styles */
.why-us {
    background-color: #ADBBDA; /* Light gray background */
    padding: 2rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 1rem;
}

.why-us div {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

/* Call to Action Section Styles */
.cta {
    text-align: center;
    padding: 2rem;
}

/* Footer Styles */
footer {
    background-color: #3D52A0;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        margin-bottom: 1rem;
    }
}