/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
}

h1, h2, h3 {
    font-weight: bold;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
    color: #333; /* Dark Gray */
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #e91e63; /* Pink */
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.25em;
    color: #2196f3; /* Blue */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50; /* Green */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #45a049; /* Darker Green */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Header Styles */
header {
    background-color: #f8f9fa; /* Light Gray */
    padding: 20px;
    border-bottom: 1px solid #dee2e6; /* Light Gray Border */
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0; /* Light Gray Background */
}

.hero img {
    border: 5px solid #ffc107; /* Yellow Border */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Make image responsive */
    height: auto;
}

/* Services Section Styles */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.service {
    width: 300px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #dee2e6; /* Light Gray Border */
    border-radius: 5px;
    text-align: center;
}

/* Why Us Section Styles */
.why-us {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9; /* Very Light Gray Background */
}

.why-us ul {
    list-style: none;
    padding: 0;
    display: inline-block; /* To keep the list centered */
}

.why-us li {
    margin-bottom: 10px;
    color: #6c757d; /* Gray */
}

/* Call to Action Section Styles */
.cta {
    text-align: center;
    padding: 20px;
    background-color: #e9ecef; /* Light Gray */
    border-top: 1px solid #dee2e6; /* Light Gray Border */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #343a40; /* Dark Gray */
    color: #fff;
}