/* about.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #f4f4f4;
}

.hero {
  position: relative;
  height: 29vh;
  background: url('../images/hero2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 40px;
  margin: 0;
}

.about-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 20px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 1rem;
  color: #ff3c78;
}

.about-text p {
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 1.5rem;
}
