/* ================= ABOUT PAGE ================= */

body{
font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}



.logo {
  font-weight: 700;
  font-size: 40px;
  text-decoration: none;   /* 👈 remove underline */
  color: inherit;          /* keeps text color clean */
}



.nav-list a.active {
  color: #00f5d4;
  pointer-events: none; /* optional */
  cursor: default;
}


.about-hero {
  padding: 100px 10% 60px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-hero p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
}

.about-section {
  padding: 60px 10%;
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-section p {
  color: #94a3b8;
  line-height: 1.7;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  flex: 1;
  padding: 20px;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.feature-box h3 {
  margin-bottom: 10px;
}

.about-cta {
  text-align: center;
  padding: 80px 10%;
}

.about-cta h2 {
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {

  .about-hero {
    padding: 80px 6% 40px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-features {
    flex-direction: column;
  }

  .about-section {
    padding: 40px 6%;
  }

  .about-cta {
    padding: 60px 6%;
  }

}





