:root {
  /* Pastel Color Palette */
  --color-primary: #a0d2db; /* Soft Teal/Mint */
  --color-primary-dark: #7fa8b0;
  --color-primary-rgb: 160, 210, 219; /* For box-shadow with opacity */
  --color-secondary: #ffc8a2; /* Pale Peach */
  --color-secondary-dark: #e0a882;
  --color-accent: #d4b2d8; /* Lavender */
  --color-background-light: #faf7f5; /* Very Light Beige/Off-White */
  --color-background-section: #ffffff;
  --color-text-dark: #222222; /* Darker for better contrast on titles */
  --color-text-medium: #4a4a4a; /* Good contrast for body text */
  --color-text-light: #ffffff;
  --color-border: #e0e0e0;
  --color-shadow: rgba(0, 0, 0, 0.08); /* Softer shadow for minimalist */
  --color-overlay: rgba(0, 0, 0, 0.5); /* For hero overlay */

  /* Fonts */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Merriweather", serif;

  /* Spacing */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-sm: 1rem; /* 16px */
  --spacing-md: 1.5rem; /* 24px */
  --spacing-lg: 2rem; /* 32px */
  --spacing-xl: 3rem; /* 48px */
  --spacing-xxl: 4rem; /* 64px */

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px; /* For "curved" elements */

  /* Transitions */
  --transition-speed: 0.3s;
  --transition-timing: ease-in-out;

  /* Header Height */
  --header-height: 70px;
}

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

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

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark); /* Dark text for titles for contrast */
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); /* Very subtle shadow */
}

h1 {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-lg);
}
h2.section-title {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--color-text-dark);
}
h3 {
  font-size: 1.6rem;
  margin-bottom: var(--spacing-sm);
}
h4 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-medium);
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-timing);
}
a:hover,
a:focus {
  color: var(--color-secondary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.img-responsive {
  max-width: 100%;
  height: auto;
}
.curved-corners {
  border-radius: var(--border-radius-lg);
}

/* --- Layout --- */
.main-container {
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.section {
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
  background-color: var(--color-background-section);
}
.section:nth-child(even) {
  background-color: var(--color-background-light);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
  color: var(--color-text-medium);
}

/* Bulma-like columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

@media screen and (max-width: 768px) {
  .columns {
    display: block;
  }
  .column,
  .column.is-two-thirds {
    width: 100% !important;
    margin-bottom: var(--spacing-md);
  }
}

/* --- Header & Navigation --- */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--color-shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.navbar-brand:hover {
  color: var(--color-secondary-dark);
  text-decoration: none;
}
.navbar-menu {
  display: flex;
  align-items: center;
}
.navbar-item {
  font-family: var(--font-heading);
  color: var(--color-text-medium);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-speed) var(--transition-timing);
}
.navbar-item::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-speed) var(--transition-timing);
}
.navbar-item:hover,
.navbar-item:focus,
.navbar-item.active {
  color: var(--color-primary-dark);
  text-decoration: none;
}
.navbar-item:hover::after,
.navbar-item:focus::after,
.navbar-item.active::after {
  width: 60%;
}
.navbar-burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--spacing-sm);
  z-index: 1001;
}
.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-dark);
  margin: 5px 0;
  transition: all var(--transition-speed) var(--transition-timing);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: var(--header-height);
    transform: translateX(-100%);
    transition: transform var(--transition-speed) var(--transition-timing);
  }
  .navbar-menu.is-active {
    display: flex;
    transform: translateX(0);
  }
  .navbar-item {
    padding: var(--spacing-md) 0;
    font-size: 1.5rem;
    width: 80%;
    text-align: center;
  }
  .navbar-item::after {
    bottom: 5px;
  }
  .navbar-burger {
    display: block;
  }
  .navbar-burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- Buttons (Global) --- */
.button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid transparent;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-speed) var(--transition-timing);
  text-decoration: none;
  line-height: 1.5;
}
.button-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark); /* Darker text for primary pastel button */
  border-color: var(--color-primary);
}
.button-primary:hover,
.button-primary:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--color-shadow);
  text-decoration: none;
}
.button-secondary {
  background-color: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.button-secondary:hover,
.button-secondary:focus {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--color-shadow);
  text-decoration: none;
}

/* --- Forms --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-dark);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--spacing-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: #fff;
  color: var(--color-text-dark);
  transition: border-color var(--transition-speed),
    box-shadow var(--transition-speed);
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.3);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  color: var(--color-text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: var(--spacing-xxl) var(--spacing-md);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  color: var(--color-text-light);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-section .button-primary {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  color: var(--color-text-light);
} /* Ensure hero button text is light */
.hero-section .button-primary:hover {
  color: var(--color-text-light);
}

/* --- About Us & Mission Sections --- */
.about-us-section .column img,
.mission-section .column img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 16px var(--color-shadow);
}
.stats-widgets-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  text-align: center;
}
.stat-widget {
  background-color: var(--color-background-section);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px var(--color-shadow);
  flex-basis: calc(33.333% - var(--spacing-md) * 2 / 3);
  min-width: 200px;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.stat-widget h3 {
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-xs);
}
.stat-widget p {
  font-size: 1rem;
  color: var(--color-text-medium);
  margin-bottom: 0;
}

/* --- Our Process Section --- */
.our-process-section {
  background-color: var(--color-background-light);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}
.process-step {
  background-color: var(--color-background-section);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px var(--color-shadow);
  text-align: center;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.process-step .card-image,
.process-step img {
  /* Ensure consistent naming if .card-image is used */
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.process-step h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
}
.step-number-container {
  position: relative;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.step-number {
  background-color: var(--color-primary);
  color: var(--color-text-dark); /* Dark text on pastel number */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
}
.progress-line {
  height: 2px;
  background-color: var(--color-border);
  position: absolute;
  left: calc(50% + 25px);
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.process-step:last-child .progress-line {
  display: none;
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .progress-line {
    display: none;
  }
}
@media (min-width: 769px) {
  /* Adjust for multi-column layouts */
  .process-steps {
    /* Example for 2 columns */
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(2n) .progress-line {
    display: none;
  } /* Hide line for last in 2-col row */

  @media (min-width: 1024px) {
    /* Example for 4 columns if used */
    .process-steps {
      grid-template-columns: repeat(4, 1fr);
    }
    .process-step:nth-child(4n) .progress-line {
      display: none;
    }
    .process-step:not(:nth-child(4n)) .progress-line {
      display: block;
    }
  }
}

/* --- Behind the Scenes Section (Custom Slider) --- */
.behind-scenes-section {
  background-color: var(--color-background-section);
}
.custom-slider-container {
  position: relative;
  max-width: 900px;
  margin: var(--spacing-lg) auto 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 25px var(--color-shadow);
}
.slide {
  display: none;
  text-align: center;
}
.slide.active {
  display: block;
  animation: fadeInAnimation 0.5s var(--transition-timing);
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.slide-caption {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color-text-light);
  padding: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.slider-prev,
.slider-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: var(--spacing-md);
  color: var(--color-text-light);
  font-weight: bold;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  user-select: none;
  transition: background-color var(--transition-speed);
}
.slider-prev {
  left: 0;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.slider-next {
  right: 0;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}
.slider-prev:hover,
.slider-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* --- Webinars Section & General Card Styling --- */
.webinars-section {
  background-color: var(--color-background-light);
}
.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}
.card {
  background-color: var(--color-background-section);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px var(--color-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary-dark);
}
.card-content p {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}
.webinar-date {
  font-size: 0.85rem;
  color: var(--color-text-medium);
  font-style: italic;
  margin-bottom: var(--spacing-sm) !important;
}
.card .button-secondary {
  margin-top: auto;
  align-self: center;
}
a.read-more-link {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-speed),
    border-bottom-color var(--transition-speed);
}
a.read-more-link:hover {
  color: var(--color-secondary-dark);
  border-bottom-color: var(--color-secondary-dark);
  text-decoration: none;
}

/* --- Partners Section --- */
.partners-section {
  background-color: var(--color-background-section);
}
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
}
.partner-logo {
  flex: 0 1 150px;
  text-align: center;
}
.partner-logo img {
  max-height: 80px;
  width: auto;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: filter var(--transition-speed), opacity var(--transition-speed);
}
.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- External Resources Section --- */
.external-resources-section {
  background-color: var(--color-background-light);
}
.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}
.resource-item {
  background-color: var(--color-background-section);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 10px var(--color-shadow);
  transition: box-shadow var(--transition-speed);
}
.resource-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.resource-item h4 {
  margin-bottom: var(--spacing-sm);
}
.resource-item h4 a {
  color: var(--color-primary-dark);
  font-weight: 600;
}
.resource-item h4 a:hover {
  color: var(--color-secondary-dark);
}
.resource-item p {
  font-size: 0.9rem;
  color: var(--color-text-medium);
  margin-bottom: 0;
}

/* --- Contact Section --- */
.contact-section {
  background-color: var(--color-background-section);
}
.contact-details h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-dark);
}
.contact-details p {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}
.contact-details p img {
  margin-right: var(--spacing-sm);
  opacity: 0.8;
}
.contact-details p strong {
  font-family: var(--font-heading);
}
.contact-details a {
  color: var(--color-text-medium);
}
.contact-details a:hover {
  color: var(--color-primary-dark);
}
.map-placeholder {
  margin-top: var(--spacing-lg);
  background-color: #f0f0f0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}
.map-placeholder p {
  padding: var(--spacing-md);
  text-align: center;
  color: #777;
  margin: 0;
}
.map-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Footer --- */
.footer {
  background-color: #333;
  color: #e0e0e0;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  font-size: 0.9rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}
.footer-column p,
.footer-column ul {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
  color: #fff;
}
.footer-column ul {
  list-style: none;
  padding-left: 0;
}
.footer-column a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color var(--transition-speed);
}
.footer-column a:hover {
  color: var(--color-text-light);
  text-decoration: underline;
}
.social-links li {
  margin-bottom: var(--spacing-xs);
}
.social-links a {
  display: inline-block;
  padding: 2px 0;
  font-weight: 500;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: #a0a0a0;
}

/* --- Specific Page Styles --- */
/* For privacy.html & terms.html, assuming body classes .page-privacy, .page-terms */
body.page-privacy,
body.page-terms {
  padding-top: var(--header-height); /* Offset for fixed header */
}
.page-content-wrapper {
  /* Wrap content of privacy/terms in this div */
  max-width: 900px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-lg);
  background-color: var(--color-background-section);
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px var(--color-shadow);
}
.page-content-wrapper h1 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-lg);
  text-align: left;
}
.page-content-wrapper h2 {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}
.page-content-wrapper p,
.page-content-wrapper ul,
.page-content-wrapper li {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}
.page-content-wrapper ul {
  list-style-position: outside;
  padding-left: var(--spacing-lg);
}

/* Success Page Styling (assuming body.page-success or specific container) */
body.page-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background-color: var(--color-background-light);
  padding: var(--spacing-lg);
}
.success-container {
  background-color: var(--color-background-section);
  padding: var(--spacing-xxl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--color-shadow);
  max-width: 600px;
}
.success-container h1 {
  color: var(--color-primary-dark);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}
.success-container p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

img {
  object-fit: cover;
}

/* --- Parallax Effect (Simple CSS version for backgrounds) --- */
.parallax-background {
  background-attachment: fixed;
}
#hero.parallax-background {
  background-attachment: scroll;
} /* Hero often needs specific handling */

/* Final Responsive Adjustments */
@media screen and (max-width: 768px) {
  h1,
  .hero-title {
    font-size: 2.5rem;
  }
  h2.section-title {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    min-width: auto;
  }
  .contact-details {
    text-align: center;
  }
  .contact-details p {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  h1,
  .hero-title {
    font-size: 2rem;
  }
  h2.section-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .button,
  button,
  input[type="submit"] {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  .hero-section .button-primary {
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}
