* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.center {
  text-align: center;
}

/* NAVBAR */
.navbar {
  background: #050F3A;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.nav-links a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

.nav-cta {
  background: #FF6A00;
  padding: 8px 16px;
  border-radius: 4px;
}

.hamburger {
  display: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  background: #050F3A;
  color: white;
  padding: 120px 0;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  max-width: 850px;
  margin-bottom: 35px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-orange {
  background: #FF6A00;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.btn-outline {
  border: 2px solid #FF6A00;
  color: #FF6A00;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.large {
  padding: 16px 35px;
  font-size: 18px;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.white { background: white; }
.light { background: #f5f6fa; }
.dark { background: #050F3A; color: white; }

/* CARDS */
.card-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.result {
  border-top: 4px solid #FF6A00;
}

.dark .card {
  background: #101c5c;
  color: white;
}

/* PROGRAM */
.program-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.program-box {
  width: 400px;
  text-align: left;
}

.program-box ul {
  margin-top: 15px;
}

.program-box li {
  margin-bottom: 8px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stats h3 {
  font-size: 28px;
  color: #FF6A00;
}

/* FAQ */
.faq-item {
  margin-top: 20px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: #FF6A00;
  color: white;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: white;
  border: 1px solid #ddd;
}

/* FOOTER */
.footer {
  background: #050F3A;
  color: white;
  padding: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .hamburger { display: block; }
  .hero h1 { font-size: 34px; }
  .stats { flex-direction: column; gap: 20px; }
}
