* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.page-hero {
  background: #2b2f3a;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 600;
}

/* INTRO */
.mega-intro {
  padding: 80px 0;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.intro-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* MODELS */
.model-section {
  padding: 40px 0;
}

.model-box {
  background: #0a1f3f;
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.model-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
}

/* WHY CHOOSE */
.why-mega {
  padding: 80px 0;
}

.why-mega h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-card span {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: #0a1f3f;
  color: #fff;
  border-radius: 50%;
  line-height: 42px;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* CTA */
.mega-cta {
  background: linear-gradient(135deg, #0a1f3f, #123a6f);
  padding: 60px 0;
  color: #fff;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 14px;
  opacity: 0.9;
}

.cta-btn {
  background: #fff;
  color: #0a1f3f;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-wrapper,
  .why-grid,
  .cta-wrapper {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
}
    .cta-btn {
        margin: auto;
    }
