/* ===== About Us Section ===== */
.about-us {

  padding: 60px 5%;
  background-color: #240202;
  
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-us .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #f8f3f3;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1rem;
  color: #f1eeee;
  line-height: 1.7;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(241, 238, 238, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-us h2 {
    font-size: 1.8rem;
  }

  .about-us .subtitle {
    font-size: 1rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-us h2 {
    font-size: 1.5rem;
  }

  .about-us .subtitle {
    font-size: 0.9rem;
  }

  .about-text {
    font-size: 0.9rem;
  }
}