/* Your previous CSS styles */

/* Enhanced styles for a refined UI */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

header {
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 0 20px 0;
}

nav ul {
  list-style: none;
  text-align: right;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

.hero {
  text-align: center;

  padding: 80px 20px;
  background-color: #eaf0f4;
}

main {
  padding: 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.service {
  gap: 10px;
  text-align: center;
  padding: 30px 20px;
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.service p {
  font-size: 16px;
  color: #666;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #007bff;
}
#about {
  background-image: url("background_image.jpg"); /* Replace 'background_image.jpg' with your image */
  background-size: cover;
  background-position: center;

  text-align: center;
  color: #333;
}

.about-container {
  max-width: 1069px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  background-color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 10px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
}
