/* ============================================
   VAN HIER ENERGIE - Main Stylesheet
   Colors: #1B4332 #3DBE6C #E8F5E9 #E8F6EE #2F2F2F
   Fonts: Montserrat (headings), Open Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --blue: #1E4D8F;
  --blue-dark: #12305A;
  --green: #3DBE6C;
  --green-dark: #2fa85b;
  --green-light: #E8F6EE;
  --blue-light: #E8F5E9;
  --dark: #2F2F2F;
  --white: #FFFFFF;
  --gray: #000000;
  --gray-light: #F7F8FA;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER / NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.header-cta {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 72px;
  width: auto;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  line-height: 1.2;
}

.logo-text span {
  color: var(--green);
  display: block;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Fix green button in nav */
.nav-links a.btn,
.header-cta {
  padding: 8px 20px !important;
  color: var(--white);
  border-radius: 8px;
  position: relative;
  font-size: 0.85rem !important;
}

.nav-links a.btn::after {
  display: none;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a.btn:hover {
  color: var(--white);
  background: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

/* Show/Hide classes for perfect layout symmetry */
.desktop-only-cta {
  display: flex !important;
}

.mobile-only-cta {
  display: none !important;
}

/* Header Phone and CTA Container styling */
.header-right-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
}

.header-phone-link:hover {
  background: var(--gray-light);
  border-color: var(--dark);
  color: var(--dark);
}

.header-phone-link svg {
  color: var(--green);
  transition: var(--transition);
  flex-shrink: 0;
}

.header-phone-link:hover svg {
  transform: rotate(15deg) scale(1.15);
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-green {
  background: #16A34A;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-green:hover {
  background: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 77, 143, 0.15);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  padding: 140px 0 120px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding-bottom: 140px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 120px;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--blue);
}

.hero-content h1 span {
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 100%);
  z-index: 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  padding: 20px 0 30px;
  background: var(--white);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  text-align: center;
  padding: 40px 36px;
  background: transparent;
  border: none;
  border-right: 1px solid #E2E8F0;
  border-radius: 0;
  transition: var(--transition);
}

.feature-card:last-child {
  border-right: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green leaf icon custom colors */
.feature-card:nth-child(1) .feature-icon {
  background: #E8F6EE;
  border: 1.5px solid #3DBE6C;
}

.feature-card:nth-child(1) .feature-icon svg {
  stroke: #3DBE6C;
}

/* Blue house and shield icon custom colors */
.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(3) .feature-icon {
  background: #E8F5E9;
  border: 1.5px solid #1E4D8F;
}

.feature-card:nth-child(2) .feature-icon svg,
.feature-card:nth-child(3) .feature-icon svg {
  stroke: #1E4D8F;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--blue);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- CTA BANNER --- */
.cta-banner {
  padding: 30px 0 80px;
  background: var(--white);
}

.cta-banner-inner {
  background: #1E4D8F;
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  height: 260px;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(61, 190, 108, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 24px 36px;
  display: block !important;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

.cta-content h2 {
  color: var(--white) !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  line-height: 1.25 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: block !important;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  margin-bottom: 24px !important;
  max-width: 400px !important;
  line-height: 1.5 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: block !important;
}

.cta-content .btn {
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  align-self: flex-start !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: inline-flex !important;
}

.cta-image {
  position: relative;
  z-index: 2;
  height: 260px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px !important;
  overflow: hidden;
}

.cta-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom; /* Anchor exactly to the bottom so the family is fully in frame */
  display: block;
}

/* Rich Floating badge matching user's image exactly */
.cta-mini-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--white);
  padding: 7px 12px;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 260px;
  z-index: 5;
}

.badge-icon-circle {
  width: 28px;
  height: 28px;
  border: 1px solid #3DBE6C;
  background: #E8F6EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-circle svg {
  width: 12px;
  height: 12px;
  stroke: #3DBE6C;
  fill: none;
  stroke-width: 2.5;
}

.badge-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.25;
}

.badge-text span {
  color: var(--gray);
  font-weight: 500;
}

.badge-heart {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: #3DBE6C;
}

.badge-heart svg {
  width: 12px;
  height: 12px;
  stroke: #3DBE6C;
}

/* --- STATS BAR --- */
.stats {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 0;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.stat-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.stat-text strong {
  display: block;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.stat-stars {
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* --- FOOTER --- */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand .logo-text span {
  color: var(--green);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 1;
  /* Always visible */
}

.animate-in.delay-1 {
  animation-delay: 0.15s;
}

.animate-in.delay-2 {
  animation-delay: 0.3s;
}

.animate-in.delay-3 {
  animation-delay: 0.45s;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-image-wrapper img {
    height: 100%;
  }

  .features .container {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .cta-banner-inner {
    grid-template-columns: 1fr;
    padding: 40px;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats .container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-only-cta {
    display: none !important;
  }

  .mobile-only-cta {
    display: inline-flex !important;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white) !important;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 16px;
    z-index: 99999 !important;
  }

  .nav-links.active a:not(.btn) {
    text-align: left !important;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .features .container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-badge {
    right: 10px;
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .cta-banner-inner {
    padding: 28px;
  }

  .stats .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ============================================
   DROPDOWN NAVIGATION SUBMENU
   ============================================ */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 900px;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(30, 77, 143, 0.12), 0 0 0 1px rgba(30, 77, 143, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 32px !important;
  border-radius: 12px;
  color: var(--dark) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none;
  background: transparent !important;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.dropdown-item::after {
  display: none !important;
}

/* Custom Product-specific Hovers */
.dropdown-item:hover {
  transform: translateY(-4px);
}

.dropdown-item:first-child:hover {
  background: var(--green-light) !important;
}

.dropdown-item:first-child:hover .dropdown-item-title {
  color: var(--green-dark) !important;
}

.dropdown-item:last-child:hover {
  background: var(--blue-light) !important;
}

.dropdown-item:last-child:hover .dropdown-item-title {
  color: var(--blue-dark) !important;
}

.dropdown-item-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent !important;
}

.dropdown-item-icon svg {
  width: 100%;
  height: 100%;
  opacity: 0.08;
  transition: opacity 0.4s ease;
}

.dropdown-item:hover .dropdown-item-icon {
  transform: scale(1.3) rotate(-10deg);
}

.dropdown-item:hover .dropdown-item-icon svg {
  opacity: 0.15;
}

.dropdown-item-icon.electric {
  color: #3DBE6C;
}

.dropdown-item-icon.gas {
  color: #1E4D8F;
}

.dropdown-item-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dropdown-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.25s ease;
}

.dropdown-item-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
  white-space: nowrap;
}

/* Mobile Dropdown adjustment */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 0 16px;
    border-radius: 0;
    min-width: 100%;
    margin-top: 8px;
    display: none; /* Controlled by active class or just visible on toggle */
    background: transparent;
    flex-direction: column;
    gap: 4px;
    border-top: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: flex;
  }
  
  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
  }
  
  .dropdown-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 16px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  
  .dropdown-item:hover {
    transform: none;
  }

  .dropdown-item-icon {
    right: 5px !important;
    bottom: -5px !important;
    width: 60px !important;
    height: 60px !important;
  }
  
  .dropdown-item-icon svg {
    width: 100% !important;
    height: 100% !important;
  }

  .dropdown-item-desc {
    white-space: normal !important;
    line-height: 1.3 !important;
  }
  
  .dropdown-menu {
    padding-left: 12px !important;
    gap: 8px !important;
  }
  
  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: var(--green) !important;
  }
}
/* Privacy Content Styling */
.privacy-content h2 { color: var(--blue); font-size: 1.6rem; margin-top: 40px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.privacy-content h3 { color: var(--blue); font-size: 1.4rem; margin-top: 32px; margin-bottom: 12px; }
.privacy-content p { margin-bottom: 20px; }
.privacy-content ul { margin-left: 24px; margin-bottom: 20px; }
.privacy-content li { margin-bottom: 8px; }
.privacy-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.privacy-content th { background: var(--gray-light); padding: 12px; text-align: left; border: 1px solid var(--border); }
.privacy-content td { padding: 12px; border: 1px solid var(--border); }
