body {
  background: red !important;
}
/* =========================
   ARTICLE WRAPPER
========================= */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.hero p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* =========================
   CONTENT TYPOGRAPHY
========================= */
.content {
  margin-top: 30px;
  line-height: 1.8;
  color: #222;
}

.content h2 {
  font-size: 26px;
  margin-top: 40px;
}

.content h3 {
  font-size: 22px;
  margin-top: 30px;
}

.content p {
  margin-bottom: 16px;
}

.content ul {
  padding-left: 20px;
}

/* =========================
   CTA
========================= */
.cta {
  margin: 50px 0;
  text-align: center;
}

.cta a {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
  background: #2766a4;
  color: #fff;
  transition: 0.3s;
}

.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================
   FAQ
========================= */
.faq {
  margin-top: 60px;
}

.faq-item {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #f9f9f9;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* =========================
   CARD GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
}

/* =========================
   MOBILE CTA STICKY
========================= */
.sticky-cta {
  display: none;
}

@media (max-width:768px) {
  .hero h1 {
    font-size: 26px;
  }

  .article-container {
    padding: 25px 15px;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2766a4;
    text-align: center;
    padding: 12px;
    z-index: 999;
  }

  .sticky-cta a {
    color: #fff;
    font-weight: bold;
  }
}