.about {
  background: #ffffff;
  color: #111;
  padding: 100px 50px;
  font-family: 'Merriweather', serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-row {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 80px;
}

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

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-text h2 {
  font-size: 32px;
  color: #e6b800;
  margin-bottom: 20px;
}

.about-text p,
.about-text li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.about-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e6b800;
  font-weight: bold;
}

.about .cta .btn {
  display: inline-block;
  padding: 15px 40px;
  background: #e6b800;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.about .cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.about .cta .btn:hover {
  background: #b38f00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 184, 0, 0.4);
}

.about .cta .btn:hover::before {
  left: 100%;
}

@media (max-width: 992px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    height: auto;
  }

  .about-text h1 {
    font-size: 48px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-text p,
  .about-text li {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 50px 20px;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-text h2 {
    font-size: 20px;
  }

  .about-text p,
  .about-text li {
    font-size: 14px;
  }

  .about-row,
  .about-row.reverse {
    gap: 20px;
  }

  .about .cta .btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
  }
}
