/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container-about {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url("../images/about.webp"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* About Section */
.about {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  margin: 0px 0;
  margin-bottom: 2rem;
}

.about h2 {
  color: #444;
  margin-bottom: 15px;
}

.about p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.about ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about ul li {
  margin-bottom: 10px;
  font-size: 16px;
  list-style-type: disc;
}
