* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

/* Hero */
.about-hero {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0b132b, #1c2d5a);
  color: white;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero h1 a {
  color: white;
  text-decoration: none;
}

.about-hero h1 a:hover {
  text-decoration: capitalize;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Sections */
.about-section {
  padding: 70px 40px;
  max-width: 1000px;
  margin: auto;
}

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

.about-section p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 16px;
}

.about-section.light {
  background: linear-gradient(135deg, #0b132b, #1c2d5a);
  max-width: 100%;
}

.about-section.light h2 {
    color: white;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: white;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

footer {
  background-color: #0b132b;
  color: white;
  text-align: center;
  padding: 20px 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
}
