/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #EDE8F5;
    color: #3D52A0; 
}

h1, h2, h3 {
    text-align: center;
    font-weight: bold;
}

h1 {
    color: #7091E6; 
}

h2 {
    color: #3D52A0; 
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 5px solid #7091E6;
    margin-bottom: 20px;
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #7091E6; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3D52A0; 
    cursor: pointer;
}

/* Services Section */
.services {
    padding: 20px;
    background-color: #ADB8DA; 
    border-radius: 10px;
    margin: 20px 10px; 
}

.services ul {
    list-style: none;
    padding: 0;
}

/* Brands and Why Us Sections */
.brands, .why-us {
    text-align: center;
    padding: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #8697C4; 
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .button {
        padding: 10px 20px;
    }
}