/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #f6f8fb;
  color: #1f2937;
  line-height: 1.8;
}

/* =========================
   HERO SECTION
========================= */
.about-hero {
  position: relative;
  height: 85vh;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #020617
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease;
}

.hero-content img {
  width: 200px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-content p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #d1d5db;
}

/* =========================
   SECTIONS
========================= */
.about-section {
  padding: 90px 20px;
  background: #ffffff;
}

.about-section.light {
  background: #f1f5f9;
}

.container {
  max-width: 1000px;
  margin: auto;
  animation: fadeUp 1s ease;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #0f172a;
  position: relative;
}

.about-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin-top: 10px;
  border-radius: 10px;
}

.about-section p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #334155;
}

/* =========================
   LISTS
========================= */
.about-list,
.about-values {
  margin-top: 20px;
  padding-left: 20px;
}

.about-list li,
.about-values li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1e293b;
}

/* =========================
   CTA SECTION
========================= */
.about-cta {
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    #2563eb,
    #1e40af
  );
  text-align: center;
  color: white;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e0e7ff;
}

.cta-btn {
  display: inline-block;
  padding: 15px 45px;
  background: white;
  color: #1e3a8a;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
========================= */
.about-footer {
  background: #020617;
  padding: 25px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .about-section h2 {
    font-size: 1.9rem;
  }
}