:root {
  /* Split-complementary color scheme */
  --primary-color: #3366cc; /* Primary blue */
  --primary-light: #4d7fd9;
  --primary-dark: #2750a3;
  --secondary-color: #cc6633; /* Orange complement */
  --secondary-light: #d9835d;
  --secondary-dark: #a35226;
  --accent-color: #33cc66; /* Green split complement */
  --accent-light: #5dd985;
  --accent-dark: #26a352;
  
  /* Neutral colors */
  --dark: #222222;
  --dark-gray: #444444;
  --medium-gray: #777777;
  --light-gray: #e0e0e0;
  --lighter-gray: #f5f5f5;
  --white: #ffffff;
  
  /* Shadows for neomorphism */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --shadow-darker: rgba(0, 0, 0, 0.2);
  
  /* Border radius */
  --radius-small: 5px;
  --radius-medium: 10px;
  --radius-large: 20px;
  --radius-circle: 50%;
  
  /* Font sizes */
  --font-xs: 0.75rem;  /* 12px */
  --font-sm: 0.875rem; /* 14px */
  --font-md: 1rem;     /* 16px */
  --font-lg: 1.125rem; /* 18px */
  --font-xl: 1.25rem;  /* 20px */
  --font-2xl: 1.5rem;  /* 24px */
  --font-3xl: 1.875rem; /* 30px */
  --font-4xl: 2.25rem; /* 36px */
  --font-5xl: 3rem;    /* 48px */
  
  /* Spacing */
  --space-xs: 0.25rem; /* 4px */
  --space-sm: 0.5rem;  /* 8px */
  --space-md: 1rem;    /* 16px */
  --space-lg: 1.5rem;  /* 24px */
  --space-xl: 2rem;    /* 32px */
  --space-2xl: 3rem;   /* 48px */
  --space-3xl: 4rem;   /* 64px */
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container width */
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: var(--font-md);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--lighter-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-5xl);
}

h2 {
  font-size: var(--font-4xl);
}

h3 {
  font-size: var(--font-2xl);
}

h4 {
  font-size: var(--font-xl);
}

p {
  margin-bottom: var(--space-md);
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: var(--font-md);
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-medium);
  transition: all var(--transition-normal);
  box-shadow: 6px 6px 12px var(--shadow-dark), 
             -6px -6px 12px var(--shadow-light);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 16px var(--shadow-dark), 
             -8px -8px 16px var(--shadow-light);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 4px 4px 8px var(--shadow-dark), 
             -4px -4px 8px var(--shadow-light);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

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

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--white);
}

/* Form Elements */
input, 
textarea, 
select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: var(--space-md);
  border: none;
  border-radius: var(--radius-medium);
  font-family: 'Rubik', sans-serif;
  font-size: var(--font-md);
  color: var(--dark-gray);
  transition: all var(--transition-normal);
}

.neomorphic-input,
.neomorphic-textarea,
.neomorphic-select {
  background-color: var(--lighter-gray);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), 
              inset -4px -4px 8px var(--shadow-light);
}

.neomorphic-input:focus,
.neomorphic-textarea:focus,
.neomorphic-select:focus {
  outline: none;
  box-shadow: inset 2px 2px 4px var(--shadow-dark), 
              inset -2px -2px 4px var(--shadow-light),
              0 0 0 3px rgba(51, 102, 204, 0.2);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--dark);
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: var(--space-sm);
}

/* Header */
.neomorphic-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--lighter-gray);
  box-shadow: 0 4px 10px var(--shadow-dark);
  padding: var(--space-md) 0;
  z-index: 1000;
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  margin-left: var(--space-lg);
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: var(--font-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-normal);
}

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

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

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

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: var(--radius-small);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: var(--font-lg);
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Neomorphic & Biomorphic Sections */
.neomorphic-section,
.biomorphic-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.biomorphic-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background-color: var(--lighter-gray);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.biomorphic-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background-color: var(--lighter-gray);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

.biomorphic-section {
  margin: 80px 0;
  background-color: var(--light-gray);
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  color: var(--medium-gray);
  font-size: var(--font-lg);
}

/* Neomorphic Cards */
.neomorphic-card {
  background-color: var(--lighter-gray);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  box-shadow: 10px 10px 20px var(--shadow-dark), 
             -10px -10px 20px var(--shadow-light);
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
  margin-bottom: var(--space-xl);
}

.neomorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 30px var(--shadow-dark), 
             -15px -15px 30px var(--shadow-light);
}

.neomorphic-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background-color: var(--lighter-gray);
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--font-xl);
  box-shadow: 6px 6px 12px var(--shadow-dark), 
             -6px -6px 12px var(--shadow-light);
  margin-bottom: var(--space-md);
}

/* Features Section */
.features-section {
  background-color: var(--lighter-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: var(--radius-medium);
  margin-bottom: var(--space-lg);
}

.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.card-content {
  flex: 1;
}

.card-content h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

/* Process Section */
.process-section {
  background-color: var(--light-gray);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background-color: var(--primary-color);
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--space-2xl);
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
}

.step-content {
  position: relative;
}

.step-content h3 {
  color: var(--primary-color);
}

/* History & Vision Sections */
.history-section, 
.vision-section {
  overflow: hidden;
}

.history-content, 
.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.history-image, 
.vision-image {
  flex: 1;
  min-width: 40%;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 10px 10px 20px var(--shadow-dark), 
             -10px -10px 20px var(--shadow-light);
}

.history-text, 
.vision-text {
  flex: 1;
}

/* Partners Section */
.partners-section {
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-logo {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.partner-card p {
  font-size: var(--font-sm);
}

/* Media Section */
.media-section {
  background-color: var(--lighter-gray);
}

.media-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.tab-button {
  padding: var(--space-md) var(--space-xl);
  background-color: var(--lighter-gray);
  border: none;
  border-radius: var(--radius-medium);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: var(--font-md);
  color: var(--dark-gray);
  cursor: pointer;
  margin: 0 var(--space-sm);
  transition: all var(--transition-normal);
  box-shadow: 6px 6px 12px var(--shadow-dark), 
             -6px -6px 12px var(--shadow-light);
}

.tab-button:hover,
.tab-button.active {
  color: var(--primary-color);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), 
              inset -4px -4px 8px var(--shadow-light);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.media-card {
  display: flex;
  flex-direction: column;
}

.media-image,
.media-video {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.media-image img,
.media-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--primary-color);
  margin-left: 5px;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.media-date {
  font-size: var(--font-sm);
  color: var(--medium-gray);
  margin-bottom: var(--space-sm);
}

.media-info h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

.media-info p {
  margin-bottom: var(--space-md);
}

.read-more,
.watch-video {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 2px;
}

.read-more::after,
.watch-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.read-more:hover::after,
.watch-video:hover::after {
  width: 100%;
}

/* Resources Section */
.resources-section {
  background-color: var(--lighter-gray);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.resource-card {
  text-align: left;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.resource-links {
  list-style: none;
  padding: 0;
}

.resource-links li {
  margin-bottom: var(--space-sm);
}

.resource-links a {
  color: var(--dark-gray);
  transition: color var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: var(--space-lg);
}

.resource-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: var(--radius-circle);
  transition: all var(--transition-normal);
}

.resource-links a:hover {
  color: var(--primary-color);
}

.resource-links a:hover::before {
  width: 12px;
  height: 12px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.contact-info {
  padding: var(--space-xl);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-circle);
  margin-right: var(--space-md);
}

.info-icon svg {
  color: var(--white);
  width: 20px;
  height: 20px;
}

.info-text h4 {
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.contact-form {
  padding: var(--space-xl);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-large);
}

.map-overlay {
  width: 100%;
  height: 100%;
}

.map-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: var(--space-xl);
}

.footer-logo img {
  margin-bottom: var(--space-md);
}

.footer-logo p {
  font-size: var(--font-sm);
  color: var(--light-gray);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  margin-bottom: var(--space-xl);
}

.footer-column h3 {
  color: var(--white);
  font-size: var(--font-lg);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--light-gray);
  transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
}

.contact-list li {
  color: var(--light-gray);
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  color: var(--white);
  font-size: var(--font-lg);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links a {
  color: var(--light-gray);
  transition: color var(--transition-normal);
}

.social-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: var(--medium-gray);
  font-size: var(--font-sm);
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-xl);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--accent-light);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.success-icon svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.success-content p {
  margin-bottom: var(--space-xl);
  font-size: var(--font-lg);
}

/* About, Privacy, Terms Pages */
.page-content {
  padding: 150px 0 var(--space-3xl);
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: var(--space-xl);
  color: var(--primary-color);
}

.page-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  color: var(--dark);
}

.page-content p {
  margin-bottom: var(--space-lg);
}

.page-content ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.page-content ul li {
  margin-bottom: var(--space-sm);
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: var(--space-lg);
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

#cookie-consent p {
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#accept-cookies {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--transition-normal);
}

#accept-cookies:hover {
  background-color: var(--accent-dark);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  :root {
    --font-5xl: 2.5rem;
    --font-4xl: 2rem;
    --font-3xl: 1.75rem;
    --font-2xl: 1.25rem;
  }
}

@media (max-width: 992px) {
  .history-content, 
  .vision-content {
    flex-direction: column;
  }
  
  .history-image, 
  .vision-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--lighter-gray);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--space-xl);
    transition: left var(--transition-normal);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 0 0 var(--space-lg);
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .hero-content h1 {
    font-size: var(--font-4xl);
  }
  
  .hero-content p {
    font-size: var(--font-md);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: var(--space-sm);
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: var(--space-lg);
  }
  
  .footer-social {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --font-5xl: 2rem;
    --font-4xl: 1.75rem;
    --font-3xl: 1.5rem;
    --font-2xl: 1.25rem;
    --font-xl: 1.125rem;
    --space-3xl: 3rem;
    --space-2xl: 2rem;
  }
  
  .section-title {
    font-size: var(--font-2xl);
  }
  
  .section-subtitle {
    font-size: var(--font-md);
  }
}