/* === Section Backgrounds === */
.section-light {
  background-color: #ffffff;
  padding: 4rem 0;
}

.section-dark {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #ffffff;
  padding: 4rem 0;
}

.section-dark .card,
.section-dark .accordion-item {
  background-color: #2c3e50;
  color: #f9f9f9;
}

/* === Hero Section === */
.hero-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-bottom: 4px solid var(--brand-accent);
  color: white;
}

.hero-dark {
  background-color: var(--brand-primary);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  border-bottom: 5px solid var(--brand-accent);
}

.hero-dark h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.hero-dark p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.hero-dark .btn {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
}

/* === Cards === */
.card {
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

/* === Carousel === */
.carousel-item {
  padding: 1rem 0;
  transition: transform 0.5s ease;
}

.object-cover {
  object-fit: cover;
  height: 100%;
  max-height: 350px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-inner .row {
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--brand-bg);
}

/* === Buttons === */
.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === FAQs === */
.accordion-button {
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-secondary);
  background-color: #e7f5ff;
}

.accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Headings === */
h2 {
  font-weight: 700;
  color: var(--brand-primary);
}

/* === Utilities === */
.section-divider {
  border-top: 2px dashed #ccc;
  margin: 5rem 0;
}

.affiliate-image-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2937;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.affiliate-image {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
  min-height: 140px;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.stat-card .icon i {
  color: var(--brand-accent);
}

