:root {
  /* Colors - Monochromatic (Greyscale focus with a hint of desaturated blue) */
  --color-background-light: #eef1f5; /* Very light grey, base for page */
  --color-background-elements: #e6eaf0; /* Slightly different for cards, inputs */
  --color-background-alt: #dfe4ea; /* Alternative background for sections */
  --color-background-dark: #3a3f47; /* Darker grey for footer */

  --color-text-primary: #2c323b; /* Darker, more contrasted text */
  --color-text-secondary: #525866; /* Lighter secondary text */
  --color-text-light: #ffffff; /* White text for dark backgrounds (Hero) */
  --color-text-placeholder: #8a92a0; /* For placeholders */

  --color-accent: #6d7fa0; /* Desaturated blue/grey for accents */
  --color-accent-hover: #5a6a87; /* Darker accent for hover */
  --color-accent-light: #9aa8c0; /* Lighter accent shade */

  --color-success: #4caf50;
  --color-success-dark: #45a049;
  --color-link: var(--color-accent);
  --color-link-hover: var(--color-accent-hover);

  /* Neumorphic Shadows */
  --shadow-distance: 5px; /* Reduced distance for subtlety */
  --shadow-blur: 10px; /* Reduced blur */
  --shadow-color-light-source: rgba(255, 255, 255, 0.8);
  --shadow-color-dark-source: rgba(
    180,
    190,
    210,
    0.5
  ); /* Adjusted for lighter bg */

  --neumorphic-shadow-outer: var(--shadow-distance) var(--shadow-distance)
      var(--shadow-blur) var(--shadow-color-dark-source),
    calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * -1)
      var(--shadow-blur) var(--shadow-color-light-source);
  --neumorphic-shadow-inner: inset var(--shadow-distance) var(--shadow-distance)
      var(--shadow-blur) var(--shadow-color-dark-source),
    inset calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * -1)
      var(--shadow-blur) var(--shadow-color-light-source);
  --neumorphic-shadow-pressed: /* For pressed state */ inset
      calc(var(--shadow-distance) / 2) calc(var(--shadow-distance) / 2)
      calc(var(--shadow-blur) / 2) var(--shadow-color-dark-source),
    inset calc(var(--shadow-distance) / -2) calc(var(--shadow-distance) / -2)
      calc(var(--shadow-blur) / 2) var(--shadow-color-light-source);

  /* Fonts */
  --font-heading: "Inter", Arial, sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --base-font-size: 16px;
  --line-height-base: 1.6;

  /* Transitions & Animations */
  --transition-speed-fast: 0.2s;
  --transition-speed-normal: 0.35s;
  --transition-easing: cubic-bezier(
    0.65,
    0.05,
    0.36,
    1
  ); /* Smoother non-linear */

  /* Layout */
  --container-width: 1140px;
  --container-padding: 20px;
  --header-height: 70px;
  --footer-height-approx: 250px;

  /* Border Radius for Biomorphic Feel */
  --border-radius-small: 8px;
  --border-radius-medium: 15px; /* Main radius for cards, inputs */
  --border-radius-large: 25px; /* For larger elements or emphasis */
  --border-radius-round: 50%;
}

/* Basic styles for cookie consent - can be moved to style.css */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  color: #f1f1f1;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none; /* Hidden by default, JS will show it */
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
}
.cookie-consent-popup p {
  margin: 0 0 15px 0;
  font-size: 1em;
  line-height: 1.6;
}
.cookie-consent-popup button {
  background-color: #4caf50; /* Green accent for accept */
  color: white;
  border: none;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  cursor: pointer;
  border-radius: 8px; /* Neumorphic touch */
  transition: background-color 0.3s ease;
}
.cookie-consent-popup button:hover {
  background-color: #45a049;
}

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

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-background-light);
  line-height: var(--line-height-base);
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-bottom: 0.75em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05); /* Subtle shadow for headings */
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2.2rem;
} /* Section titles */
h3 {
  font-size: 1.6rem;
} /* Card titles, sub-headings */
h4 {
  font-size: 1.3rem;
}
p {
  margin-bottom: 1.25em;
  color: var(--color-text-secondary);
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-speed-fast) var(--transition-easing);
}
a:hover,
a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

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

ul,
ol {
  list-style: none;
  padding-left: 0;
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.columns {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem; /* Gutter compensation */
}

.column {
  padding: 1rem; /* Gutter */
  flex-grow: 1;
  flex-basis: 0;
}

.column.is-two-thirds {
  flex: none;
  width: 66.666%;
}
.column.is-one-third {
  flex: none;
  width: 33.333%;
}

/* MAIN CONTAINER FOR BARBA.JS */
.main-container {
  min-height: calc(
    100vh - var(--footer-height-approx)
  ); /* Ensure footer stays down */
}

/* PAGE TRANSITION */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-background-elements);
  z-index: 10000;
  transform: translateY(100%); /* Start off-screen */
}
/* Barba.js transition classes (example) */
.fade-in {
  opacity: 0;
  animation: fadeInAnimation var(--transition-speed-normal)
    var(--transition-easing) forwards;
}
.fade-out {
  animation: fadeOutAnimation var(--transition-speed-normal)
    var(--transition-easing) forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* HEADER */
.site-header {
  position: fixed; /* Or sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(
    238,
    241,
    245,
    0.85
  ); /* Light with slight transparency for biomorphic/glassmorphic hint */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: var(--header-height);
  transition: background-color var(--transition-speed-normal)
    var(--transition-easing);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
}
.logo:hover {
  color: var(--color-accent);
}

.main-navigation .nav-menu {
  display: flex;
  align-items: center;
}
.main-navigation .nav-menu li {
  margin-left: 25px;
}
.main-navigation .nav-menu a {
  color: var(--color-text-secondary);
  font-weight: 500;
  padding: 10px 5px;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-speed-fast) var(--transition-easing);
}
.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu a.active {
  color: var(--color-accent);
}
.main-navigation .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-speed-normal) var(--transition-easing);
}
.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none; /* For mobile */
}

/* CONTENT SECTIONS */
.content-section {
  padding: 60px 0; /* Natural height based on content */
}
.section-bg-alt {
  background-color: var(--color-background-alt);
}
.section-title {
  text-align: center;
  margin-bottom: 40px; /* Increased margin for better separation */
  font-size: 2.5rem; /* Slightly larger section titles */
  color: var(--color-text-primary);
  position: relative;
  padding-bottom: 15px; /* Space for accent line */
}
.section-title::after {
  /* Subtle underline accent */
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-small);
}
.section-description {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh; /* Enough height for impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Simple parallax */
  padding: var(--header-height) var(--container-padding) 60px; /* Account for header and add bottom padding */
}
.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.65)
  ); /* Ensure text contrast */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: 3.5rem; /* Larger hero title */
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-light); /* Enforce white color */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-subtitle {
  font-size: 1.5rem; /* Larger hero subtitle */
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--color-text-light); /* Enforce white color */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* GLOBAL BUTTON STYLES */
.cta-button,
.button-link,
.submit-button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-primary);
  background-color: var(--color-background-elements);
  border: none;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-outer);
  transition: all var(--transition-speed-normal) var(--transition-easing);
  cursor: pointer;
  outline: none;
}
.cta-button:hover,
.button-link:hover,
.submit-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  color: var(--color-accent-hover);
  box-shadow: var(
    --neumorphic-shadow-inner
  ); /* Inset on hover for a pressed feel */
}
.cta-button:active,
.button-link:active,
.submit-button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  box-shadow: var(--neumorphic-shadow-pressed);
  transform: scale(0.98);
}
/* Hero button specific color */
.hero-section .cta-button {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  padding: 15px 35px;
  font-size: 1.1rem;
}
.hero-section .cta-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-light); /* Keep text light */
  box-shadow: var(
    --neumorphic-shadow-outer
  ); /* Maintain outer shadow for prominent button */
  transform: translateY(-2px);
}
/* Specific button link styling */
.button-link {
  padding: 8px 18px;
  font-size: 0.9rem;
}
.download-button {
  background-color: var(--color-accent-light);
  color: var(--color-text-primary);
}
.download-button:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

/* FORMS (NEUMORPHIC) */
.neumorphic-form .form-group {
  margin-bottom: 25px;
}
.neumorphic-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.neumorphic-form input[type="text"],
.neumorphic-form input[type="email"],
.neumorphic-form input[type="tel"],
.neumorphic-form input[type="password"],
.neumorphic-form textarea {
  width: 100%;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background-color: var(--color-background-elements);
  border: none;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-inner);
  transition: box-shadow var(--transition-speed-normal) var(--transition-easing);
  outline: none;
}
.neumorphic-form input[type="text"]::placeholder,
.neumorphic-form input[type="email"]::placeholder,
.neumorphic-form textarea::placeholder {
  color: var(--color-text-placeholder);
}
.neumorphic-form input[type="text"]:focus,
.neumorphic-form input[type="email"]:focus,
.neumorphic-form input[type="tel"]:focus,
.neumorphic-form input[type="password"]:focus,
.neumorphic-form textarea:focus {
  box-shadow: var(--neumorphic-shadow-inner),
    0 0 0 2px var(--color-accent-light); /* Highlight focus */
}
.neumorphic-form textarea {
  min-height: 120px;
  resize: vertical;
}
.submit-button {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  width: 100%; /* Full width for contact form */
  padding: 15px;
}
.submit-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-light);
}

/* CARDS (BASE STYLE - NEUMORPHIC) */
.card {
  background-color: var(--color-background-elements);
  border-radius: var(--border-radius-large); /* More biomorphic radius */
  box-shadow: var(--neumorphic-shadow-outer);
  padding: 25px;
  transition: transform var(--transition-speed-normal) var(--transition-easing),
    box-shadow var(--transition-speed-normal) var(--transition-easing);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center .card-image and .card-content */
  text-align: center; /* Center inline content within card-content */
  height: 100%; /* For consistent height in grids */
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: calc(var(--shadow-distance) * 1.5)
      calc(var(--shadow-distance) * 1.5) calc(var(--shadow-blur) * 1.5)
      var(--shadow-color-dark-source),
    calc(var(--shadow-distance) * -1.5) calc(var(--shadow-distance) * -1.5)
      calc(var(--shadow-blur) * 1.5) var(--shadow-color-light-source);
}
.card-image {
  /* Container for image */
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(
    --border-radius-medium
  ); /* Rounded corners for image container */
  overflow: hidden; /* Crucial for object-fit */
  display: flex; /* Centers img if it's smaller, though usually width 100% */
  justify-content: center;
  align-items: center;
  /* Fixed height for consistent card appearance in grids, adjust as needed */
  height: 200px; /* Example, can be customized per section or be auto */
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area, might crop */
  display: block;
}
.card-content {
  width: 100%;
}
.card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--color-text-primary);
}
.card-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
/* Grid for cards */
.card-grid,
.event-list,
.media-mentions-grid,
.external-links-grid,
.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* SPECIFIC SECTIONS */

/* About Section */
#about .column img {
  border-radius: var(--border-radius-large);
  box-shadow: var(--neumorphic-shadow-outer);
}
.neumorphic-image-wrapper {
  /* For standalone images if needed */
  border-radius: var(--border-radius-large);
  box-shadow: var(--neumorphic-shadow-outer);
  padding: 10px; /* Optional padding around image */
  background-color: var(--color-background-elements);
  display: inline-block; /* Or block */
}
.neumorphic-image-wrapper img {
  border-radius: calc(var(--border-radius-large) - 5px); /* Inner radius */
}

/* Innovation, Projects, Workshops (use .card-grid) */
.project-card .card-image {
  height: 220px;
} /* Custom height for project images */

/* Events Section */
.event-item .card-image {
  height: 180px;
}
.event-date {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neumorphic-shadow-outer);
  transition: transform var(--transition-speed-normal) var(--transition-easing),
    box-shadow var(--transition-speed-normal) var(--transition-easing);
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: calc(var(--shadow-distance) * 2) calc(var(--shadow-distance) * 2)
      calc(var(--shadow-blur) * 2) var(--shadow-color-dark-source),
    calc(var(--shadow-distance) * -2) calc(var(--shadow-distance) * -2)
      calc(var(--shadow-blur) * 2) var(--shadow-color-light-source);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Customer Stories / Testimonials */
.testimonial-slider {
  /* Basic grid for now, JS can make it a slider */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  padding: 30px;
}
.testimonial-author-image {
  /* Overrides .card-image for specific testimonial style */
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-round); /* Circular image */
  margin-bottom: 20px;
  box-shadow: var(--neumorphic-shadow-outer); /* Image has its own shadow */
  background-color: var(--color-background-light); /* Slight separation */
  padding: 5px; /* Optional inner spacing */
}
.testimonial-author-image img {
  border-radius: var(--border-radius-round);
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  quotes: "“" "”" "‘" "’";
}
.testimonial-card blockquote p::before {
  content: open-quote;
  margin-right: 0.25em;
}
.testimonial-card blockquote p::after {
  content: close-quote;
  margin-left: 0.25em;
}
.testimonial-card footer {
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Media Section */
.media-item .card-image {
  height: 100px; /* For logos */
  padding: 15px; /* Space around logo */
  background-color: var(
    --color-background-light
  ); /* Slightly different bg for logo */
  margin-bottom: 15px;
}
.media-item .card-image img {
  object-fit: contain; /* Logos should not be cropped */
  max-height: 70px; /* Control logo size */
}

/* External Resources */
.external-link-card h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
}
.external-link-card h3 a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Resources Section */
.resource-item .card-image {
  /* For icons */
  width: 80px;
  height: 80px;
  background-color: transparent; /* Icons might have their own bg or be transparent */
  box-shadow: none; /* No double shadow for icon holder */
  margin-bottom: 15px;
  padding: 10px;
}
.resource-item .card-image img {
  object-fit: contain;
}
.animated-icon-placeholder {
  /* Generic placeholder style for icons */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add subtle animation if desired, e.g. slight bob or pulse */
}

/* Contact Section */
#contact .contact-details h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#contact .contact-details p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}
#contact .contact-details strong {
  color: var(--color-text-primary);
}
.map-placeholder {
  width: 100%;
  height: 300px; /* Placeholder height */
  background-color: var(--color-background-alt);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-inner); /* Map can be inset */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-medium);
}

/* FOOTER */
.site-footer {
  background-color: var(--color-background-dark);
  color: #b0b8c5; /* Lighter text for dark footer */
  padding: 50px 0;
  font-size: 0.95rem;
}
.footer-content .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px; /* Gap between columns */
  margin-bottom: 30px;
}
.footer-column {
  flex: 1;
  min-width: 250px; /* Minimum width for columns */
}
.footer-column h4 {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-light);
}
.footer-column p {
  color: #b0b8c5;
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-nav li,
.social-links li {
  margin-bottom: 10px;
}
.footer-nav a,
.social-links a {
  color: #b0b8c5;
  text-decoration: none;
  transition: color var(--transition-speed-fast) var(--transition-easing),
    padding-left var(--transition-speed-fast) var(--transition-easing);
}
.footer-nav a:hover,
.social-links a:hover {
  color: var(--color-text-light);
  padding-left: 5px; /* Subtle hover effect */
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9098a5;
}
.footer-bottom p {
  margin-bottom: 0;
}

/* PRIVACY & TERMS PAGES */
.privacy-policy-page main,
.terms-page main,
.success-page-content main /* For specific content wrappers if any */ {
  padding-top: calc(var(--header-height) + 40px); /* Space for fixed header */
  padding-bottom: 40px;
}
.privacy-policy-page .container h1, /* For single h1 on page */
.terms-page .container h1 {
  text-align: center;
  margin-bottom: 30px;
}
.privacy-policy-page .container h2,
.terms-page .container h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

/* SUCCESS PAGE */
.success-page-container {
  /* This class would be on the body or a main wrapper of success.html */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--container-padding);
  background-color: var(--color-background-light);
}
.success-content-box {
  background-color: var(--color-background-elements);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--neumorphic-shadow-outer);
  max-width: 500px;
}
.success-content-box h1 {
  color: var(--color-success);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.success-content-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.success-content-box .cta-button {
  background-color: var(--color-success);
  color: var(--color-text-light);
}
.success-content-box .cta-button:hover {
  background-color: var(--color-success-dark);
}

/* ANIMATIONS ON SCROLL (basic setup, JS will add 'animate-in' class) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-speed-normal) var(--transition-easing),
    transform var(--transition-speed-normal) var(--transition-easing);
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }

  .card-grid,
  .event-list,
  .media-mentions-grid,
  .external-links-grid,
  .resource-list,
  .testimonial-slider,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .content-section {
    padding: 40px 0;
  }

  .columns {
    display: block;
    margin: 0;
  }
  .column {
    width: 100% !important;
    padding: 0 0 1.5rem 0;
  }
  .column:last-child {
    margin-bottom: 0;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav menu */
  }
  .hamburger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    position: relative;
    transition: background-color var(--transition-speed-fast) ease;
  }
  .hamburger-icon::before,
  .hamburger-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: transform var(--transition-speed-normal)
      var(--transition-easing);
  }
  .hamburger-icon::before {
    top: -7px;
  }
  .hamburger-icon::after {
    bottom: -7px;
  }

  .main-navigation .nav-menu {
    position: fixed;
    top: 60px; /* Align with header or slightly below */
    right: -100%; /* Start off-screen */
    width: 70%;
    max-width: 300px;
    height: fit-content;
    background-color: var(--color-background-elements);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 20px) 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-speed-normal) var(--transition-easing);
    overflow-y: auto;
  }
  .main-navigation.nav-open .nav-menu {
    right: 0;
  }
  .main-navigation .nav-menu li {
    margin-left: 0;
    width: 100%;
  }
  .main-navigation .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    width: 100%;
  }
  .main-navigation .nav-menu a::after {
    display: none; /* No underline for mobile menu items like desktop */
  }

  /* Active burger menu icon */
  .nav-open .hamburger-icon {
    background-color: transparent; /* Middle line disappears */
  }
  .nav-open .hamburger-icon::before {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-open .hamburger-icon::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .social-links li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.7rem;
  }

  .cta-button,
  .button-link,
  .submit-button,
  button,
  input[type="submit"] {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .hero-section .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .neumorphic-form input[type="text"],
  .neumorphic-form input[type="email"],
  .neumorphic-form textarea {
    padding: 12px 15px;
  }

  .card-grid,
  .event-list,
  .media-mentions-grid,
  .external-links-grid,
  .resource-list,
  .testimonial-slider,
  .gallery-grid {
    grid-template-columns: 1fr; /* Single column for very small screens */
    gap: 20px;
  }
  .card {
    padding: 20px;
  }
}

/* Cookie Consent Popup - styles from HTML, can be enhanced or kept minimal */
.cookie-consent-popup {
  /* Styles are mostly in HTML to ensure they load first */
  /* Ensure text is readable */
  color: var(--color-text-light);
}
.cookie-consent-popup a {
  color: var(--color-accent-light); /* Lighter accent for dark bg */
}
.cookie-consent-popup button {
  background-color: var(--color-success);
  color: var(--color-text-light);
  box-shadow: none; /* simpler button for popup */
}
.cookie-consent-popup button:hover {
  background-color: var(--color-success-dark);
  box-shadow: none;
}
