

/* ===== GLOBAL & BODY STYLES ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFEF5 !important; /* Seamless background matching hero section */
  color: #111;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ===== NAVIGATION & HEADER ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.logo-img {
  height: 34px;
  object-fit: contain;
}

.navbar-toggler-icon {
  display: none; /* Hide default Bootstrap icon */
}

.custom-menu-btn {
  background: #0D6EFD !important;
  border: none;
  height: 41px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.custom-menu-btn:focus {
  box-shadow: none !important;
}

.menu-lines {
  display: block;
  width: 48px;
  height: 2px;
  background: #fff;
  position: relative;
}

.menu-lines::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 48px;
  height: 2px;
  background: #fff;
}

.fig-text {
  color: #cccccc;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.menu-text {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

/* ===== HERO SECTION STYLES ===== */
.hero-subscription-wrapper {
  background-color: #FFFEF5 !important;
  padding: 40px 0 0 0 !important;
  border-bottom: none !important;
}

.brand-yellow-badge {
  background-color: #FEEE00;
  color: #000000;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.9rem;
}

.btn-dark-questions {
  background-color: #333333 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 1px solid #333333 !important;
  transition: all 0.2s ease-in-out;
}

.btn-dark-questions:hover {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-color: #FEEE00 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.bg-custom-yellow {
  background-color: #E4D500 !important;
  color: #000000 !important;
}

.btn-custom-yellow {
  background-color: #E4D500 !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: 1px solid #c2b500 !important;
  transition: all 0.2s ease-in-out;
}

.btn-custom-yellow:hover {
  background-color: #c2b500 !important;
  color: #000000 !important;
}

.btn-outline-custom-yellow {
  border: 2px solid #E4D500 !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

.btn-outline-custom-yellow:hover {
  background-color: #E4D500 !important;
  color: #000000 !important;
}

.hero-card {
  border-top: 5px solid #E4D500 !important;
  background-color: #ffffff;
  border-radius: 8px;
}

/* ===== SEAMLESS ARTICLE & TYPOGRAPHY ===== */
.article-wrapper {
  background-color: #FFFEF8 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.article-content {
  background-color: #FFFEF8 !important;
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 15px 20px 40px 20px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

h1 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 35px !important;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 18px;
}

h4 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* UNIFIED PARAGRAPH TYPOGRAPHY (HERO & ARTICLE) */
.hero-subscription-wrapper p,
.article-content p,
.article-content li {
  font-size: 22px;
  font-weight: 380;
  line-height: 1.75;
  color: #000000 !important;
  margin-bottom: 20px;
}

.white-paragraph {
  color: #fff !important;
  font-weight: 700;
  font-size: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* ===== ACCORDION & FAQ STYLES ===== */
.accordion-button:not(.collapsed) {
  background-color: #f8c858 !important;
  color: #333 !important;
  font-weight: 700 !important;
}

.accordion-button {
  color: #333 !important;
  font-weight: 600 !important;
  font-size: 1.15rem !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 200, 88, 0.25) !important;
}

.accordion-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
}

.accordion-body {
  background-color: #ffffff !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: #222222 !important;
}

.faq-item {
  scroll-margin-top: 100px;
}

.quick-nav-link {
  color: #333333 !important;
  font-weight: 700;
  text-decoration: underline;
}

.quick-nav-link:hover {
  color: #000000 !important;
}

/* ===== COMPONENTS (CARDS, ALERTS, FIGURES) ===== */
.alert-box {
  background-color: #f8f9fa !important;
  border-left: 5px solid #0d6efd !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 8px !important;
  margin: 1.5rem 0 !important;
  display: block !important;
}

.article-content .alert-box p {
  color: #1a1a1a !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.badge-highlight {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  padding: 4px 10px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* FIGURE & IMAGE OVERRIDES (REMOVED THIN GREY BORDER) */
figure {
  border: none !important;
  display: flex;
  flex-flow: column;
  padding: 0;
  max-width: 750px;
  margin: auto;
}

figure img,
img {
  max-width: 750px;
  border: none !important;
  outline: none !important;
}

figcaption {
  background-color: #222222;
  color: white;
  font: italic smaller sans-serif;
  padding: 10px;
  text-align: center;
}

.card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.card-header {
  background-color: #B6D3FE;
  padding: 16px 20px;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 8px 8px 0 0;
}

.card-header h3 {
  color: #000000 !important;
  font-weight: 600;
  margin: 0;
}

.card-title {
  color: #000000;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.form-label {
  font-weight: 600;
}

.form-control {
  padding: 14px;
  font-size: 16px;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: none;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 768px) {
  .logo-img {
    height: 28px;
  }

  .article-wrapper {
    width: 100%;
    padding: 0 !important;
  }

  .article-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px !important;
    border-radius: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 27px !important;
    margin-top: 40px !important;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 26px;
    margin-top: 40px !important;
  }

  h4 {
    font-size: 26px;
    margin-top: 40px !important;
  }

  .hero-subscription-wrapper p,
  .article-content p,
  .article-content li {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.75;
    color: #000;
  }

  .white-paragraph {
    font-size: 18px;
  }

  .floating-btn {
    display: block;
  }
}