/* ROOT VARIABLES */
:root {
  --primary-color: #a8d8b9; /* Soft Mint Green */
  --secondary-color: #f3d5b5; /* Warm Peach */
  --accent-color: #e8a09a; /* Dusty Rose/Coral */
  --text-color: #383838; /* Dark Grey - increased contrast */
  --text-color-light: #555555; /* Slightly lighter dark grey for less emphasis */
  --text-on-dark: #ffffff;
  --background-light: #fcf8f3; /* Creamy Off-white */
  --background-alt: #f0ebe3; /* Slightly darker cream/beige */
  --card-background: #ffffff;
  --border-color: #d1cec7; /* Slightly darker border */
  --shadow-color: rgba(0, 0, 0, 0.08);
  --shadow-strong-color: rgba(0, 0, 0, 0.12);

  --font-heading: "Manrope", sans-serif;
  --font-body: "Rubik", sans-serif;

  --spacing-unit: 8px;
  --padding-section-y: calc(var(--spacing-unit) * 7); /* 56px */
  --padding-section-x: calc(var(--spacing-unit) * 2); /* 16px */
  --padding-card: calc(var(--spacing-unit) * 3); /* 24px */
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;

  --header-height: 70px;
  --footer-background: #333;
  --footer-text-color: #e0e0e0;
  --footer-link-color: var(--primary-color);
}

/* BASIC RESET & GLOBAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--background-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ensure content on specific pages is not hidden by fixed header */
body.privacy-page .main-content,
body.terms-page .main-content,
body.success-page .main-content,
body.about-page .main-content,
body.contacts-page .main-content {
  padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #222222; /* Darker for headings */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
  color: var(--text-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

ul,
ol {
  list-style-position: inside;
  margin-bottom: calc(var(--spacing-unit) * 2);
  padding-left: calc(var(--spacing-unit) * 2);
}

/* UTILITY CLASSES */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding-section-x);
  padding-right: var(--padding-section-x);
}

.text-center {
  text-align: center;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 3); /* 24px */
}

.column {
  flex: 1 1 100%; /* Default to full width on small screens */
}

@media (min-width: 768px) {
  .column.is-two-thirds {
    flex-basis: calc(66.66% - (var(--spacing-unit) * 1.5)); /* Adjust for gap */
  }
  .column:not(.is-two-thirds) {
    /* Assuming the other is one-third */
    flex-basis: calc(33.33% - (var(--spacing-unit) * 1.5)); /* Adjust for gap */
  }
}

.alt-background {
  background-color: var(--background-alt);
}

/* GLOBAL BUTTON STYLES */
.cta-button,
.cta-button-secondary,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3.5); /* 12px 28px */
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-medium);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
  min-width: 150px; /* Ensure buttons have a decent minimum width */
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--text-on-dark);
  border-color: var(--accent-color);
}

.cta-button:hover {
  background-color: #d18c85; /* Darker accent */
  border-color: #d18c85;
  color: var(--text-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--shadow-strong-color);
  text-decoration: none;
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.cta-button-secondary:hover {
  background-color: var(--accent-color);
  color: var(--text-on-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--shadow-color);
  text-decoration: none;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(
    252,
    248,
    243,
    0.9
  ); /* Semi-transparent background-light */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow-color);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
  text-decoration: none;
}
.logo:hover {
  color: var(--primary-color);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contactForm .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#contactForm input, #contactForm textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #555555;
}

.main-navigation .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-links li {
  margin-left: calc(var(--spacing-unit) * 3); /* 24px */
}

.main-navigation .nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-color-light);
  text-decoration: none;
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.5);
  border-radius: var(--border-radius-small);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.main-navigation .nav-links a:hover,
.main-navigation .nav-links a.active {
  color: var(--accent-color);
  background-color: rgba(232, 160, 154, 0.1); /* Light accent background */
  text-decoration: none;
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; /* Above nav links on mobile */
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  position: relative;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .main-navigation .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    box-shadow: 0 5px 10px var(--shadow-color);
    padding: var(--spacing-unit) 0;
    border-top: 1px solid var(--border-color);
  }

  .main-navigation .nav-links.active {
    display: flex;
  }

  .main-navigation .nav-links li {
    margin: 0;
    width: 100%;
  }

  .main-navigation .nav-links a {
    display: block;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  .main-navigation .nav-links li:last-child a {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-active .hamburger {
    transform: rotate(45deg);
    background-color: var(--accent-color); /* Change color when active */
  }
  .menu-toggle.is-active .hamburger::before {
    top: 0;
    transform: rotate(90deg);
    background-color: var(--accent-color);
  }
  .menu-toggle.is-active .hamburger::after {
    top: 0;
    transform: rotate(90deg);
    opacity: 0; /* Hide bottom bar for X */
  }
}

/* FOOTER */
.site-footer {
  background-color: var(--footer-background);
  color: var(--footer-text-color);
  padding: var(--padding-section-y) 0;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4); /* 32px */
}

.footer-column h4.footer-heading {
  font-family: var(--font-heading);
  color: var(--text-on-dark);
  font-size: 1.3rem;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  position: relative;
  padding-bottom: var(--spacing-unit);
}
.footer-column h4.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  margin-bottom: var(--spacing-unit);
  color: var(--footer-text-color);
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: var(--spacing-unit);
}

.footer-column ul li a {
  color: var(--footer-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--footer-link-color);
  text-decoration: underline;
}

.social-links-text li a {
  display: inline-block;
  padding: var(--spacing-unit) 0; /* Vertical padding for better click area */
}

.footer-bottom {
  text-align: center;
  margin-top: calc(var(--spacing-unit) * 4);
  padding-top: calc(var(--spacing-unit) * 2);
  border-top: 1px solid #444; /* Darker border for footer sections */
  font-size: 0.85rem;
  color: #aaa;
}
.footer-bottom p {
  color: #aaa;
}

/* GENERAL SECTION STYLING */
.content-section {
  padding-top: var(--padding-section-y);
  padding-bottom: var(--padding-section-y);
}

.section-title {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 5); /* 40px */
  font-size: 2.5rem; /* Slightly larger for main section titles */
  color: #222222; /* Ensured dark color */
  position: relative;
  padding-bottom: var(--spacing-unit);
}

.section-title::after {
  /* Optional: subtle underline effect */
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
  margin: var(--spacing-unit) auto 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--spacing-unit) * 4); /* 32px */
  font-size: 1.1rem;
  color: var(--text-color-light);
}

/* HERO SECTION */
.hero-section {
  min-height: 85vh; /* Responsive height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--text-on-dark);
  padding: var(--padding-section-y) var(--padding-section-x);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  ); /* Darkening overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  color: var(--text-on-dark); /* Explicitly white */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Provided in HTML, kept for consistency */
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  line-height: 1.6;
  color: var(--text-on-dark); /* Explicitly white */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Provided in HTML */
}

/* CARDS (Services, Success Stories, Events, Media, Resources) */
.card {
  background-color: var(--card-background);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 15px var(--shadow-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  /* align-items: center; /* Per STROGO: for centering images */
  /* text-align: center; /* Per STROGO: for content in card */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-strong-color);
}

.card-image {
  /* Container for the image */
  width: 100%;
  height: 220px; /* Fixed height for image container */
  overflow: hidden;
  display: flex; /* For centering the img if it's smaller, though object-fit should handle it */
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container */
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--padding-card);
  flex-grow: 1; /* Allows content to take up space and push footer (if any) down */
  display: flex;
  flex-direction: column;
}
/* If content inside card-content needs centering: */
.card.service-card .card-content,
 .card.success-card .card-content,
 .card.resource-item .card-content, /* resource-item already has card class */
 .card.event-item .card-content, /* event-item already has card class */
 .card.media-item .card-content {
  text-align: center; /* Center text if desired */
  align-items: center; /* Center block elements if card-content is flex */
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-unit);
  color: #2c2c2c; /* Darker card title */
}
.card-content p {
  font-size: 0.95rem;
  color: var(--text-color-light);
  flex-grow: 1; /* Pushes action links to bottom if card is flex */
}
.card-content .read-more-link,
.card-content .event-register-link {
  margin-top: auto; /* Pushes link to the bottom if .card-content is flex column */
  display: inline-block;
  font-weight: bold;
  color: var(--accent-color);
  padding-top: var(--spacing-unit);
}
.card-content .read-more-link:hover,
.card-content .event-register-link:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Specific Grid Layouts for Cards */
.services-grid,
.media-grid,
.success-gallery,
.resources-list,
.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 3.5); /* 28px */
}

/* Mission & Vision Sections */
.mission-vision-section .columns {
  align-items: center; /* Vertically align image and text block */
}
.mission-vision-section .text-block p {
  font-size: 1.05rem;
}
.mission-vision-section .image-block .image-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow-color);
}
.mission-vision-section .image-block img {
  border-radius: var(--border-radius-large);
}

/* Success Stories Section */
.statistics-widgets {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-unit) * 2;
  margin-bottom: calc(var(--spacing-unit) * 5);
  text-align: center;
}
.stat-widget {
  padding: var(--spacing-unit) * 2;
  min-width: 150px;
}
.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: var(--spacing-unit) * 0.5;
}
.stat-label {
  font-size: 1rem;
  color: var(--text-color-light);
}
.centered-cta {
  text-align: center;
  margin-top: calc(var(--spacing-unit) * 4);
}

/* Partners Section */
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 3);
}
.partner-logo img {
  max-height: 80px;
  width: auto;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* External Resources Section */
.resource-item .resource-title a {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: bold;
}
.resource-item .resource-title a:hover {
  color: var(--accent-color);
}
.resource-description {
  font-size: 0.9rem;
}

/* Events Calendar Section */
.event-item .event-date {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: var(--spacing-unit) * 0.5;
}
.event-item .event-title {
  font-size: 1.3rem;
}

/* Media Section */
.media-item .media-date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-color-light);
  margin-bottom: var(--spacing-unit) * 0.5;
}

/* Careers Section */
.careers-section .text-block h4 {
  margin-top: calc(var(--spacing-unit) * 3);
  margin-bottom: var(--spacing-unit);
  color: var(--primary-color);
}
.careers-section .text-block ul li a {
  font-weight: bold;
}

/* Sustainability Section */
.sustainability-section .image-block .image-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow-color);
}
.sustainability-section .image-block img {
  border-radius: var(--border-radius-large);
}

/* CTA Contact Section */
.cta-contact-section {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  text-align: center;
}
.cta-contact-section .section-title-cta {
  color: var(--text-on-dark);
  margin-bottom: var(--spacing-unit) * 1.5;
}
.cta-contact-section .section-title-cta::after {
  background-color: var(--text-on-dark);
}
.cta-contact-section p {
  color: var(--text-on-dark);
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-contact-section .cta-button {
  background-color: var(--text-on-dark);
  color: var(--primary-color);
  border-color: var(--text-on-dark);
}
.cta-contact-section .cta-button:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
  border-color: var(--background-light);
}

/* CONTACT PAGE SPECIFIC STYLES (contacts.html) */
.contact-page-section {
  padding-top: var(--padding-section-y);
  padding-bottom: var(--padding-section-y);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--spacing-unit) * 5);
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr; /* Info | Form */
  }
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-unit) * 2;
}
.contact-info p {
  margin-bottom: var(--spacing-unit) * 1.5;
  font-size: 1.05rem;
}
.contact-info p strong {
  color: var(--text-color);
}
.contact-info a {
  color: var(--accent-color);
}
.contact-info a:hover {
  color: var(--primary-color);
}

.contact-form .form-group {
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}
.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-unit);
  color: var(--text-color-light);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff; /* Ensure inputs have a background */
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(168, 216, 185, 0.3); /* Primary color focus ring */
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form button[type="submit"] {
  width: auto; /* Allow button to size to content or be full-width via utility */
  min-width: 200px;
}

/* Styles for success.html */
.success-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(
    100vh - var(--header-height) - 100px
  ); /* Adjust 100px if footer height is different */
  text-align: center;
  padding: var(--padding-section-x);
}
.success-page-container h1 {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: var(--spacing-unit) * 2;
}
.success-page-container p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-unit) * 3;
  max-width: 600px;
}

/* Styles for privacy.html and terms.html */
.legal-content-page .container {
  padding-top: calc(
    var(--spacing-unit) * 3
  ); /* Additional top padding for content itself */
  padding-bottom: var(--padding-section-y);
  max-width: 900px; /* Narrower for readability */
}

.legal-content-page h1,
.legal-content-page h2 {
  margin-bottom: var(--spacing-unit) * 3;
}
.legal-content-page h2 {
  margin-top: var(--spacing-unit) * 4;
  color: var(--primary-color);
}
.legal-content-page p,
.legal-content-page ul,
.legal-content-page ol {
  margin-bottom: var(--spacing-unit) * 2;
  line-height: 1.8;
}



/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 15px;
  } /* Slightly smaller base font on mobile */
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-intro {
    font-size: 1rem;
  }

  .columns {
    flex-direction: column;
  }
  .column.is-two-thirds,
  .column:not(.is-two-thirds) {
    flex-basis: 100%;
  }
  .mission-vision-section .columns .image-block {
    order: -1; /* Image first on mobile if it comes second in HTML */
  }
  .mission-vision-section.alt-background .columns .image-block {
    order: 0; /* Respect HTML order for the other one */
  }
  .statistics-widgets {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .cta-button,
  .cta-button-secondary {
    padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 2.5);
    font-size: 0.9rem;
  }
  .footer-container {
    grid-template-columns: 1fr; /* Stack footer columns */
    text-align: center;
  }
  .footer-column h4.footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Cookie Consent Popup (already in HTML, basic styling if needed) */
#cookieConsentPopup p {
  color: #fff; /* Ensure text is white as per HTML inline style */
  font-size: 14px;
}
#cookieConsentPopup button {
  /* Style the accept button from HTML */
  background-color: var(--primary-color); /* Use theme color */
  color: var(--text-color); /* Dark text on light button */
}
#cookieConsentPopup button:hover {
  background-color: var(--accent-color);
  color: var(--text-on-dark);
}
