/* ===== ABOUT & EXAM PAGES - MODERN CLEAN DESIGN ===== */

.about-page {
  padding:50px 20px;
  background: var(--bg-body);
}

.about-page h2 {
  color: var(--dark);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.about-page p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-page p:last-of-type {
  margin-bottom: 0;
}

.about-page strong {
  color: var(--dark);
  font-weight: 600;
}

/* Checklist - Minimal Design */
.checklist {
  list-style: none;
  margin: 32px 0 0;
}

.checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 18px;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Cards for Exam Pages - Clean Minimal Design */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 48px;
  align-items: stretch;
}

.card {
  background: var(--card-bg);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

body.dark-theme .card {
  background: var(--surface-soft);
  border-color: var(--nav-border);
}

.card:hover {
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.card h3 {
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.card .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card .feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
}

.card .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* CTA Section - Subtle Background */
.cta-section {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
  background: var(--dark);
  border-radius: 20px;
}

body.dark-theme .cta-section {
  background: var(--surface-soft);
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  padding-bottom: 20px;
  max-width: 600px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-page {
    padding: 50px 20px;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }
  
  .cta-section {
    margin-top: 70px;
    padding: 70px 20px;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 40px 20px;
  }
  
  .about-page h2 {
    font-size: clamp(24px, 4.5vw, 32px);
    margin-bottom: 24px;
  }
  
  .about-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }
  
  .card-image {
    height: 180px;
  }
  
  .cta-section {
    margin-top: 60px;
    padding: 50px 20px;
  }
  
  .cta-section h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
  }
  
  .cta-section p {
    font-size: 17px;
    margin-bottom: 24px;
  }
  
  .cta-row {
    gap: 12px;
  }
  
  .checklist {
    margin: 28px 0 0;
  }
  
  .checklist li {
    padding: 10px 0 10px 28px;
    font-size: 16px;
  }
  
  .card h3 {
    font-size: clamp(20px, 3vw, 26px);
  }
  
  .card-content p {
    font-size: 16px;
  }
  
  .card .feature-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding: 50px 16px;
  }
  
  .about-page h2 {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 20px;
  }
  
  .about-page p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  
  .checklist li {
    padding: 8px 0 8px 24px;
    font-size: 15px;
  }
  
  .cards {
    gap: 32px;
    margin-top: 32px;
  }
  
  .card-image {
    height: 160px;
  }
  
  .card h3 {
    font-size: clamp(18px, 4vw, 24px);
    margin-bottom: 12px;
  }
  
  .card-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .card .feature-list li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
  }
  
  .cta-section {
    margin-top: 50px;
    padding: 40px 16px;
    border-radius: 20px;
  }
  
  .cta-section h2 {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 12px;
  }
  
  .cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .cta-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-row .btn {
    width: 100%;
  }
}
