/* ================================
   HERO SECTION
   ================================ */
.about-hero {
  background: var(--cpht1-blue);
  color: var(--cpht1-white);
  padding: 5rem 0 3rem 0;
  text-align: center;
}
.about-herocontainer {
  max-width: 900px;
  margin: 0 auto;
}
.about-herotitle {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.about-herotext {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cpht1-light-grey);
  margin-bottom: 0;
}
:root {
  --cpht1-blue: #0a1628;
  --cpht1-dark-blue: #1a2d4a;
  --cpht1-light-blue: #2d5a8a;
  --cpht1-white: #ffffff;
  --cpht1-light-grey: #f8f9fa;
  --cpht1-text: #4a5568;
  --cpht1-border: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--cpht1-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================================
   CONTENT SECTION
   ================================ */

.about-section {
  padding: 6rem 5%;
  background: #f8f9fa;
}

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

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.about-card {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
  border-color: #0a1628;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background: #0a1628;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.about-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about-card p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 5%;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .about-card h3 {
    font-size: 1.4rem;
  }

  .about-card p {
    font-size: 1rem;
  }
}
