/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #ddd;
  padding: 100px 20px;
  font-family: "Poppins", Arial, sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

/* Left content */
.about-content {
  text-align: left;
}

.about-title {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  color: gold;
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  color: #bbb;
  font-size: 0.9rem;
}

/* Right info box */
.about-box {
  background: #111;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.box-title {
  color: gold;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.box-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.box-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.box-icon {
  font-size: 1.8rem;
}

.box-subtitle {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.box-text {
  color: #bbb;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

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

@media (max-width: 600px) {
  .about-section {
    padding: 70px 15px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .box-title {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }
}
