:root {
  /* =========================================================
     COLOR SCHEME: Authority & Aspiration (Navy, Charcoal, Gold)
     ========================================================= */
  --primary-navy: #002D5B; /* Deep Navy Blue (Trust/Authority/Primary Brand) */
  --secondary-charcoal: #333333; /* Charcoal Grey (Stability/Text Accent) */
  
  --accent-gold: #FFC300; /* Vibrant Gold (Excellence/CTA) */
  --accent-light: #FFDA6A; /* Lighter Gold variant for subtle highlights/hovers */

  --text-dark: #1A1A1A; /* Dark Anthracite (Main Heading Text) */
  --text-light: #5C6773; /* Muted text for secondary info (Good contrast) */
  
  --bg-main: #FFFFFF; /* Clean White (Main Background) */
  --bg-section: #F4F4F4; /* Light Off-White (Section Background) */

  /* Old colors (kept as comments for reference) */
  /* --gold: #b8860b; */
  /* --light-gold: #e7d075; */
  /* --text-light:#800000; */
  /* --bg-light: #f5f5dc; */
  /* --green-dark: #3a531e; */
  /* --green-light: #6c824c; */
  /* --my-color: #789085; */
}

/* ==== BASE ==== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--secondary-charcoal); /* FIX: Use Charcoal as default text color */
  background: var(--bg-main); /* FIX: Use White as default background */
  scroll-behavior: smooth;
/* Add offset for fixed header */
  padding-top: 48px; /* tighter offset */
}

h1, h2, h3 {
  margin: 0;
color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-navy); /* FIX: Use Navy as default link color */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
b {
  display: inline;
}
/* =========================================================
   HEADER STYLES — FINAL (R2R Academy), slightly raised, compact
========================================================= */

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: none;
  background: var(--primary-navy); /* FIX: Use Navy for header background */
  color: #fff;
  padding: 4px 4px;  /* reduced padding for tighter fit */
  position: fixed;
  top: 0;
  left: 0; 
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

/* Logo / title */
.header-left h1 {
  font-size: 1.0rem;
  color: var(--accent-light); /* FIX: Use Light Gold */
  margin: 0;
  font-weight: 100;
  letter-spacing: 0.1px;
	animation: text-scale 2s infinite alternate ease-in-out;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
flex-wrap: nowrap;
#overflow-x: hidden;
  padding: 5px 40px 5px 5px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color:  #fff;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-light); /* FIX: Use Light Gold on hover */
  font-weight: 500;
}

/* Dropdown */
nav ul li ul {
  display: none; /* FIX: Set to none to hide by default */
  position: absolute;
  top: 100%;
  left: 0;

  /* These rules are active when visible */
  flex-direction: column; /* FIX: Ensure vertical stacking */
  gap: 0; 
  
  background: var(--primary-navy); /* FIX: Use Navy for dropdown background */
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 150px; /* Tighter width */
  max-width: auto;
  flex-wrap: nowrap;
  font-weight: 300;
  z-index: 1000;
}

nav ul li:hover > ul {
  display: flex; /* FIX: Change to flex on hover to show */
}

nav ul li ul li a {
    color: var(--accent-gold); /* FIX: Use Gold for links */
    font-weight: 300;
white-space: nowrap;
  padding: 6px 12px;
  display: block;
}

nav ul li ul li a:hover {
  
color: #fff;
font-weight: 700;
}
nav ul li ul li {
  border-bottom: 1px solid var(--accent-light); /* FIX: Use Light Gold for separator */
    margin: 0;
    width: 100%; /* FIX: Ensure full width inside flex column */
}

nav ul li ul li:last-child {
    border-bottom: none;
}

/* =========================================================
   HERO — left aligned + overlay + justified text
========================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;       /* content starts higher */
  justify-content: flex-start;
  text-align: left;
  padding: 60px 8% 40px;       /* less vertical padding */
           /* auto adjusts with content */
  background: url("images/hero-split.jpg") no-repeat center center;
  background-size: cover;     /* full image visible */
  background-position: center;
  background-color: #000;       /* fallback */
  color: #fff;
  top: -35px;
  overflow: hidden;
}

/* subtle overlay for text readability  */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  rgba(0, 0, 0, 0.4) 0%,
  rgba(0, 0, 0, 0.2) 50%,
  rgba(0, 0, 0, 0.1) 100%
);
top: 80px;
  z-index: 1;
}

/* =========================================================
   HERO OVERRIDES for simple-header
========================================================= */
.hero.simple-header {
  background: var(--bg-section); /* Use light section background */
  background-image: none; /* Remove the image */
  background-color: var(--bg-section); /* Ensure solid background */
  color: var(--secondary-charcoal); /* Use dark text color for container */
  top: 0; /* REMOVES THE NEGATIVE VERTICAL SHIFT */
  padding: 40px 8%; /* Adjust padding for visual spacing */
  align-items: center; 
  justify-content: center;
  text-align: center;
}

/* Remove the dark overlay for the simple hero */
.hero.simple-header::before {
  content: none;
}

/* Ensure headings/text inside are dark (they usually inherit but force here) */
.hero.simple-header h2,
.hero.simple-header p {
    color: var(--text-dark); /* Ensure text is dark and readable */
    margin: 0 auto;
    text-align: center;
}
/* move text upward, overlay follows */
.hero-content {
  top: 35px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  //background: rgba(0, 0, 0, 0.2);
  padding: 60px 40px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
  transform: translateY(-100px); /* move only eyebrow + text */
} 


/* eyebrow */
.eyebrow {
	display: inline-block;
  	background-color: var(--accent-gold);           /* FIX: Use Gold */
  	color: var(--primary-navy);                  /* FIX: Use Navy for contrast */
  	font-weight: 300;
  	padding: 10px 35px;
  	border-radius: 50px;
  	border: 3px solid var(--accent-light);      /* FIX: Use Light Gold for border */
  	/* Apply both border blinking and text scaling animations */
       animation: blink-border 1.5s infinite alternate;
	# text-scale 2s infinite alternate ease-in-out;
  	font-size: 1.0rem;
  	letter-spacing: 0.7px;
  	margin-top: -8px;
  	margin-bottom: 18px;
  	cursor: pointer;
}

/* Border blinking animation */
@keyframes blink-border {
  0%, 100% {
    border-color: var(--accent-gold); /* FIX: Use Gold */
    box-shadow: 0 0 10px var(--accent-light); /* FIX: Use Light Gold */
  }
  50% {
    border-color: transparent;
    box-shadow: none;
  }
}

/* Text scaling animation */
@keyframes text-scale {
  0%, 100% {
    font-size: 1.2rem;
  }
  50% {
    font-size: 1.5rem;  /* Enlarged size */
  }
}

/* headline */
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0px 0 18px;
  line-height: 1.2;
  text-align: justify;
}

.hero h1 span {
  color: var(--accent-light); /* FIX: Use Light Gold */
}

/* subtext */
.hero-subtext {
  font-size: 1rem;
  color: #f5f5f5;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: justify;
}

/* tagline */
.tagline {
  font-size: 1.4rem;
  margin-bottom: 28px;
  opacity: 0.75;
  font-weight: 600;
  color: #fff;

}

/* CTAs */
.hero-ctas {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 300;
  text-align: center;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary-navy); /* FIX: Use Gold */
  color: #fff; /* FIX: Use Navy for contrast */
  border: 2px solid var(--accent-gold); /* FIX: Use Gold */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.btn.primary:hover {
  background: var(--accent-gold); /* FIX: Use Navy */
  color: var(--primary-navy); /* FIX: Use White */
 font-size: 18px;
 border: 2px solid #fff; /* FIX: Use Gold */
}

.btn.secondary {
  background: var(--primary-navy); /* FIX: Use Navy */
  color: #fff;
}

.btn.outline {
  background: transparent; /* FIX: Changed to transparent */
  border: 1px solid var(--accent-gold); /* FIX: Use Gold */
  color: var(--accent-gold); /* FIX: Use Gold */
}

.btn.outline:hover {
  background: var(--accent-gold); /* FIX: Use Gold */
  border: 1px solid var(--accent-gold);
  color: var(--primary-navy); /* FIX: Use Navy */
}

/* =========================================================
   WHY R2R
========================================================= */
.why-r2r {
  background: var(--bg-section);
  padding: 40px 10%;
}

.why-r2r h2 {
  text-align: center;
  font-size: 2rem;
}

/* Center-align only the heading inside R2R-30 section */
.r2r-30 .text h1,
.r2r-30 .text h2,
.r2r-30 .text h3 {
  text-align: center;
  width: 100%;
  margin: 0 auto 20px auto;   /* centers + adds spacing below */
}

.why-r2r p {
  font-size: 1rem;
  line-height: 1.7;
}

.why-r2r .features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.why-r2r .features li {
  margin: 10px 0;
  font-size: 1rem;
}

/* =========================================================
   R2R IN 30 SECONDS
========================================================= */
.r2r-30 {
  display: flex;
  justify-content: space-between;
  align-items: left;
  gap: 80px;
  padding: 40px 10%;
  flex-wrap: wrap;
}

.r2r-30 h2 {
   font-size: 2rem;
  text-align: center;
}


.r2r-30 .text {
  flex: 1;
}


.r2r-30 .image img {
  width: 380px;
  border-radius: 12px;
}

.r2r-30 ul {
  list-style: none;
  padding: 0;
}

.r2r-30 ul li {
  margin: 10px 0;
}

.r2r-30 .links {
  margin-top: 20px;
  font-weight: 600;
}

/* =========================================================
   THE R2R WAY
========================================================= */
.r2r-way {
  background: var(--bg-section);
  padding: 80px 10%;
}

.r2r-way h2 {
  text-align: center;
  font-size: 2rem;
}

.r2r-way ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.r2r-way ul li {
  margin: 10px 0;
  font-size: 1rem;
}

.promise {
  background: var(--primary-navy); /* FIX: Use Navy background for promise box */
  color: #fff; /* FIX: Ensure text is white */
  border-radius: 10px;
  padding: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

/* =========================================================
   DISCOVER OLQ READINESS
========================================================= */
.discover-olq {
  padding: 80px 10%;
  text-align: center;
}

.discover-olq h2 {
  font-size: 2rem;
}

.discover-olq p {
  margin: 20px auto;
  max-width: 800px;
  color: var(--text-light); /* FIX: Use new muted text color */
  line-height: 1.7;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  text-align: center;
  background: var(--primary-navy); /* FIX: Use Navy background for footer */
  color: #fff;
  padding: 30px 20px;
  font-weight: 400;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);

}

/* FIX: Ensure footer headings and text are light over dark background */
footer h1 {
  color: var(--accent-light); /* Make the main title light gold for distinction */
  margin-bottom: 5px;
  font-weight: 500;
  top: 0px
}
footer h2,
footer h3,
footer p {
  color: #fff; /* Ensure sub-headings and paragraphs are white */
}
footer h2 {
  margin-bottom: 5px;
  font-weight: 500;
}

footer h3 {
  margin-bottom:5px;
  font-weight: 300;
}

footer p {
  margin: 5px 0;
}

footer .social {
  margin-top: 15px;
}

.site-footer a {
  font-size: 1.0rem;
  color: var(--accent-light); /* FIX: Use Light Gold */
  margin: 0;
  font-weight: 300;
  margin: 0 5px;
  letter-spacing: 0.8px;
 //color: var(--light-gold);       /* your current footer link color */
  text-decoration: underline;     /* always underlined */
  transition: color 0.3s ease;    /* smooth color transition */
}

/* Hover effect */
.site-footer a:hover {
  color: #ffffff;                 /* turns white when hovered */
  text-decoration: underline;     /* keep underline on hover */
}
footer .social a {
  color: var(--accent-gold); /* FIX: Use Gold */
  margin: 0 10px;
  font-weight: 600;
}

footer small {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}



/* ==== SSB TRAITS STYLES (Final Rules) ==== */

/* Container and general setup */
.ssb-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ssb-h1 {
    color: var(--primary-navy); /* FIX: Use Navy */
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    border-bottom: 2px solid var(--bg-section);
    padding-bottom: 15px;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light); /* FIX: Use muted text color */
    font-size: 1.1em;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-navy); /* FIX: Use Navy */
}

.tab-button {
    background-color: var(--bg-section);
    color: var(--primary-navy); /* FIX: Use Navy */
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.3s, color 0.3s;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-right: 2px;
    margin-bottom: -2px;
}

.tab-button:hover {
    background-color: var(--accent-light); /* FIX: Use Light Gold */
    color: var(--text-dark);
}

.tab-button.active {
    background-color: var(--primary-navy); /* FIX: Use Navy */
    color: white;
    border-bottom: 2px solid var(--primary-navy);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid var(--bg-section);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #fcfcfc;
    min-height: 200px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: var(--accent-gold); /* FIX: Use Gold accent */
    margin-top: 0;
    font-size: 1.4em;
    border-bottom: 1px dashed var(--bg-section);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.tab-content ul {
    list-style-type: decimal;
    margin-left: 25px;
    padding-left: 0;
    margin-bottom: 20px;
}

.tab-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.tab-content strong {
    color: var(--text-dark);
}

/* Summary Section */
.summary-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-section);
}

.summary-section h2 {
    text-align: center;
    color: var(--primary-navy); /* FIX: Use Navy */
    font-size: 1.8em;
    margin-bottom: 20px;
}

.summary-section p {
    font-size: 1.1em;
    text-align: justify;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Footer */
.ssb-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light); /* FIX: Use muted text color */
    font-size: 0.9em;
    padding-top: 20px;
    border-top: 1px solid var(--bg-section);
}

.ssb-footer a {
    color: var(--text-light); /* FIX: Use muted text color */
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tab-buttons {
        justify-content: flex-start;
    }
    .tab-button {
        flex: 1 1 auto;
        margin-right: 0;
        border-radius: 0;
        margin-bottom: 2px;
    }
    .tab-button:last-child {
        border-bottom-right-radius: 6px;
    }
    .tab-button:first-child {
        border-top-left-radius: 6px;
    }
    .tab-content {
        border-top-left-radius: 0;
    }
    .ssb-container {
        padding: 10px;
    }
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .r2r-30 {
    flex-direction: column;
    text-align: center;
  }

  .r2r-30 .image img {
    width: 90%;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* =============================================================
   CARDS SECTION – glass cards with gold accent (For Dark Background Sections)
   ============================================================= */
.cards-section{
  padding:48px 6vw 64px;
  display:flex;
  justify-content:center;
  background: var(--primary-navy); /* FIX: Use Navy background for this dark section */
}
.cards-wrap{
  width:100%;
  max-width:1100px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  align-items:stretch;
}

/* Single card for DARK BACKGROUND */
.card {
  /* Common base styles for ALL cards - ensures hover transition is always present */
  border-radius:14px;
  padding:28px;
  min-height:100px;
  display:flex;
  flex-direction:column;
  gap:12px;
  transition: transform .28s ease, box-shadow .28s ease; /* Essential for popup style */
  position:relative;
  overflow:hidden;
}

.cards-section .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:var(--card-shadow);
  color: #fff; /* Set general card text to white over dark background */
}

/* Dark Card Hover (Default) */
.cards-section .card:hover,
.card:hover {
  transform:translateY(-8px); 
  box-shadow:0 18px 40px rgba(0,0,0,0.44); /* Dark shadow for contrast */
}

.cards-section .card-icon{
  width:56px; height:56px; border-radius:12px;
  background: linear-gradient(90deg,var(--accent-gold),var(--accent-light)); /* FIX: Use new Gold/Light Gold */
  color:var(--primary-navy); /* FIX: Icon text set to Navy for contrast */
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1.1rem;
  box-shadow:0 8px 24px rgba(255,195,0,0.12);
}

.cards-section .card h3{ margin:0; font-size:1.05rem; font-weight:700; color: var(--accent-gold); } /* FIX: Use Gold */
.cards-section .card p{ margin:0; color:rgba(255, 255, 255,0.8); line-height:1.5; font-size:1.2rem; } /* FIX: Use light text for dark background */


/* LIGHT BACKGROUND CARDS FIXES (OLQ and Programs pages) */
#olq .card,
#programs .card,
.comparison-section .card {
  /* FIX: Apply dark text and solid light background to cards outside the dark section */
  color: var(--secondary-charcoal);
  background: var(--bg-main); /* White background */
  border: 1px solid var(--bg-section); /* Subtle border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Light shadow */
}

/* FIX: Light Card Hover */
#olq .card:hover,
#programs .card:hover,
.comparison-section .card:hover {
  transform: translateY(-8px); /* Re-enable lift effect */
  box-shadow: 0 12px 30px rgba(0,0,0,0.15); /* Use a lighter shadow for light background */
}

#olq .card h4,
#programs .card h3 {
  color: var(--primary-navy); /* Ensure headings are Navy */
}

#olq .card p.muted,
#programs .card p.muted {
  color: var(--text-light); /* Use muted text color for description */
}

/* Style for the price text on program cards */
#programs .card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold); /* Gold to make it pop */
  margin-top: 10px;
  margin-bottom: 20px;
}


.r2r-30 .card {color: var(--secondary-charcoal); font-size:0.95rem;}
.r2r-30 .card h2 {color: var(--primary-navy); margin:0; font-size:1.6rem; font-weight:700; text-align: justify;}
.r2r-30 .card h3 {color: var(--accent-gold); margin:0; font-size:1.2rem; font-weight:500;}
.r2r-30 .card .ul .li {color: var(--secondary-charcoal); }
.r2r-30 .card a:hover {color: var(--primary-navy); 
  font-weight: 500;
}

/* =========================================================
   GRID SYSTEM (for side-by-side layouts)
   ========================================================= */
.container .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12-column foundation */
  gap: 30px; /* Standard spacing between columns */
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Column width definitions (Default: Desktop/Large screens) */
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; } /* One-third width (3 cards per row) */
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; } /* Half width */
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; } /* Full width */

/* Tablet Rule (992px and below) - Col-4 cards become 2 per row (span 6) */
@media (max-width: 992px) {
  .col-4, .col-5, .col-7, .col-8 { 
    grid-column: span 6; /* 3-column layouts (col-4) become 2-column (span 6) on tablets */
  }
  .col-10, .col-11 {
    grid-column: span 12; /* Larger columns still stack */
  }
}

/* Mobile Rule (768px and below) - All columns become 1 per row (span 12) */
@media (max-width: 768px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    grid-column: span 12; /* Full width stack on mobile */
  }
}


/* =========================================================
   COMPARISON PAGE STYLES
========================================================= */
.comparison-section .section-title {
  text-align: center; /* Center the heading */
  font-size: 2rem;
  color: var(--primary-navy); /* FIX: Use Navy */
  margin-bottom: 5px;
}

/* Comparison Card styles use the light-card fix block above */
.comparison-section .card h1,
.comparison-section .card h2,
.comparison-section .card h3,
.comparison-section .card h4 {
  color: var(--primary-navy); /* Ensure headers are Navy */
}

/* Ensure table cells and text are dark */
.comparison-section .comparison-table td {
  color: var(--secondary-charcoal); /* FIX: Use Charcoal */
}

/* Override the default card color for table rows */
.comparison-section .card p { 
  color: var(--secondary-charcoal); /* FIX: Use Charcoal */
}

/* Header row styling */
.comparison-section thead tr {
  background: var(--primary-navy) !important; /* FIX: Use Navy for header background */
  color: #fff !important; /* Set text to white for contrast */
}

/* Alternating row colors for better readability */
.comparison-section tbody tr:nth-child(even) {
  background-color: var(--bg-section);
}

.comparison-section tbody tr:nth-child(odd) {
  background-color: #fff; /* Set to white for contrast with --bg-section */
}