/* ============================================================
   ABOUT PAGE — PREMIUM CLEAN DESIGN
   Modern container layout with enhanced styling
============================================================ */

.about-section {
  padding: 80px 20px;
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
}

/* Premium White Container */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* =========================================
   HEADER SECTION
========================================= */
.about-header h1 {
  font-size: 42px;
  font-family: "Poppins", sans-serif;
  color: #c62828;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-header .tagline {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 50px;
  font-weight: 400;
}

/* =========================================
   CONTENT LAYOUT (TEXT + IMAGE)
========================================= */
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

/* Text Section */
.about-text {
  flex: 1;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text strong {
  color: #c62828;
  font-weight: 600;
}

/* Image Section */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f5f5f5;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

/* =========================================
   SECTION BLOCKS
========================================= */
.milestones,
.brands,
.what-we-offer,
.community {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #f5f5f5;
}

.about-section h2 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #c62828;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.about-section ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  position: relative;
  padding-left: 28px;
}

.about-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c62828;
  font-weight: bold;
  font-size: 18px;
}

/* =========================================
   BRAND LIST (TAGS)
========================================= */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.brand-list span {
  background: linear-gradient(135deg, #c62828, #a31616);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.3);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  .about-wrapper {
    padding: 50px 40px;
  }

  .about-header h1 {
    font-size: 32px;
  }

  .about-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-wrapper {
    padding: 30px 20px;
  }

  .about-header h1 {
    font-size: 28px;
  }

  .about-header .tagline {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
  }

  .about-text {
    font-size: 15px;
    text-align: left;
  }

  .about-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-wrapper {
    padding: 30px 20px;
  }

  .about-header h1 {
    font-size: 26px;
  }

  .about-header .tagline {
    font-size: 16px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-section ul li {
    font-size: 15px;
    padding-left: 24px;
  }

  .brand-list span {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* h1/h2/p responsive sizing handled globally in common.css */
