/* Overall background and font */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f1eb; /* soft beige like sample */
  color: #222;
}

/* Header hero section */
.about-hero {
  background-image: url("CSS/img/background2.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero .overlay {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About sections */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 60px auto;
  padding: 40px;
  max-width: 1200px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-section.left {
  flex-direction: row-reverse;
}

.about-img img {
  width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.03);
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  color: #0a0a0a;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-img img {
    width: 90%;
  }
}