/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Darker text for better contrast */
}

header {
    background-color: #007bff; /* Modern blue */
    color: #fff;
    padding: 20px;
    text-align: center;
}

h1 {
  font-size: 2.5em; /* Larger H1 for SEO */
}

h2 {
    color: #0056b3; /* Darker blue for headings */
    margin-top: 20px;
}

h3 {
  color: #333;
}

#hero {
  display: flex;
  flex-direction: column; /* Stack on smaller screens */
  align-items: center;  /* Center content horizontally */
  padding: 20px;
  background-color: #f8f9fa; /* Light grey background */
}

#hero img {
  border-radius: 10px; /* Rounded corners for image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-bottom: 20px; /* Space below image */
  max-width: 100%; /* Make image responsive */
  height: auto;
}

.hero-content {
  text-align: center;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

button:hover {
    background-color: #0056b3;
}

section {
    padding: 20px;
}

#services ul, #why-us ul {
    list-style-type: disc;
    margin-left: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #hero {
    flex-direction: column; /* Stack elements vertically */
  }
}