:root {
  /* Tetrad color scheme */
  --primary-color: #3a86ff;
  --secondary-color: #ff5e5b;
  --tertiary-color: #8a2be2;
  --quaternary-color: #4cc9b0;
  
  /* Additional colors and shades */
  --primary-dark: #2563c1;
  --secondary-dark: #e34442;
  --tertiary-dark: #6a20b0;
  --quaternary-dark: #39a38d;
  
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Neomorphism shadows */
  --neumorph-light: 8px 8px 16px rgba(174, 174, 192, 0.4), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --neumorph-dark: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.05);
  --neumorph-inset: inset 6px 6px 12px rgba(174, 174, 192, 0.2), inset -6px -6px 12px rgba(255, 255, 255, 0.7);
  
  /* Font sizes */
  --fs-xl: 3.5rem;
  --fs-lg: 2.5rem;
  --fs-md: 1.8rem;
  --fs-sm: 1.25rem;
  --fs-xs: 1rem;
  
  /* Spacing */
  --space-xl: 5rem;
  --space-lg: 3rem;
  --space-md: 2rem;
  --space-sm: 1rem;
  --space-xs: 0.5rem;
  
  /* Border radius */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

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

h2 {
  font-size: var(--fs-lg);
}

h3 {
  font-size: var(--fs-md);
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

/* Section Styles */
section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
  border-radius: var(--radius-sm);
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Button Styles */
.btn-primary, 
.btn-secondary, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: var(--fs-xs);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--neumorph-light);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--neumorph-inset);
  transform: translateY(2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--neumorph-inset);
  transform: translateY(2px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

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

.logo a {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

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

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

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  margin-top: 0;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  padding: var(--space-lg);
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* Services Section */
.services {
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 120%;
  height: 15%;
  background-color: #ffffff;
  transform: rotate(-2deg);
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neumorph-light);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.features-list {
  list-style-type: none;
  padding: 0;
  margin-top: var(--space-sm);
}

.features-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--light-gray);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Statistics Section */
.statistics {
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  color: white;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 110%;
  height: 10%;
  background-color: #f5f7fa;
  transform: rotate(2deg);
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  background: linear-gradient(90deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

/* Methodology Section */
.methodology {
  background-color: #ffffff;
  position: relative;
}

.timeline-container {

  position: relative;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--tertiary-color));
  border-radius: var(--radius-sm);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: var(--space-lg);
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-marker {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--neumorph-light);
}

.timeline-content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  max-width: 80%;
  box-shadow: var(--neumorph-light);
  transition: transform var(--transition-fast);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

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

/* Resources Section */
.resources {
  background-color: #f5f7fa;
  position: relative;
}

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

.resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neumorph-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.resource-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.resource-card .card-content {
  padding: var(--space-md);
  text-align: center;
}

.resource-card .card-content a {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.resource-card .card-content a::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.resource-card .card-content a:hover::after {
  transform: translateX(5px);
}

/* About Section */
.about {
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neumorph-light);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

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

.about-text h3 {
  color: var(--primary-color);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.about-text ul {
  list-style-type: none;
}

.about-text ul li {
  margin-bottom: var(--space-xs);
  padding-left: 25px;
  position: relative;
}

.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: #f5f7fa;
  position: relative;
}

.scenes-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.scenes-slider {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.slider-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--neumorph-light);
}

.slide {
  position: relative;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.slider-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: var(--space-xs);
  z-index: 3;
}

.slider-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  transition: all var(--transition-fast);
}

.slider-controls button:hover {
  background-color: var(--primary-color);
}

.scenes-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.detail-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--neumorph-light);
  transition: transform var(--transition-fast);
}

.detail-card:hover {
  transform: translateY(-5px);
}

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

/* Team Section */
.team {
  background-color: #ffffff;
}

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

.team .card-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.team .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.team .card-content {
  padding: var(--space-md);
  text-align: center;
}

.position {
  color: var(--gray-color);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.team-socials {
  margin-top: var(--space-sm);
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.team-socials a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

/* FAQ Section */
.faq {
  background-color: #f5f7fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--neumorph-light);
}

.faq-question {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(58, 134, 255, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--dark-color);
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

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

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  display: none;
}

.faq-item.active .faq-question {
  background-color: rgba(58, 134, 255, 0.1);
}

.faq-item.active .toggle-btn {
  transform: rotate(0) !important;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--neumorph-light);
  height: max-content;
}

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

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.contact-info .icon {
  margin-right: var(--space-xs);
  font-size: 1.2rem;
}

.contact-map {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--neumorph-light);
}

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

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: 'Rubik', sans-serif;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: var(--space-xs);
}

.checkbox label {
  margin: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-links h3,
.footer-social h3,
.footer-newsletter h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

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

.footer-links ul li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

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

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

.social-links a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  margin-top: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: 'Rubik', sans-serif;
}

.newsletter-form button {
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.9);
  color: white;
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
}

.cookie-content {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  transition: background-color var(--transition-fast);
}

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

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background-color: #f5f7fa;
}

.success-content {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--neumorph-light);
  max-width: 600px;
  width: 90%;
}

.success-icon {
  font-size: 5rem;
  color: var(--quaternary-color);
  margin-bottom: var(--space-md);
}

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

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

.back-to-home {
  display: inline-block;
  margin-top: var(--space-sm);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px; /* Spacing for fixed header */
  min-height: 80vh;
}

.page-content .container {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--neumorph-light);
}

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

.page-content h2 {
  color: var(--tertiary-color);
  margin: var(--space-md) 0 var(--space-sm);
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D Effects */
.card, 
.stat-card, 
.timeline-content, 
.resource-card, 
.detail-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover, 
.stat-card:hover, 
.timeline-content:hover, 
.resource-card:hover, 
.detail-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

/* Curved Grid Elements */
.services::before, 
.statistics::before {
  transform-origin: center;
  animation: wavyMotion 15s infinite alternate ease-in-out;
}

@keyframes wavyMotion {
  0% {
    transform: rotate(-2deg) scaleX(1);
  }
  50% {
    transform: rotate(0deg) scaleX(1.05);
  }
  100% {
    transform: rotate(2deg) scaleX(1);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  :root {
    --fs-xl: 3rem;
    --fs-lg: 2.2rem;
    --fs-md: 1.5rem;
    --fs-sm: 1.1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-xl: 2.5rem;
    --fs-lg: 2rem;
    --fs-md: 1.3rem;
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: var(--space-xs) 0;
  }
  
  .burger-menu {
    display: block;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-right: 0;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 80px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-xl: 2rem;
    --fs-lg: 1.8rem;
    --fs-md: 1.2rem;
    --space-xl: 3rem;
    --space-lg: 2rem;
  }
  
  .hero-content {
    padding: var(--space-md);
  }
  
  .section-header h2::after {
    width: 60px;
  }
  
  .slider-controls {
    bottom: 10px;
    right: 10px;
  }
  
  .slider-controls button {
    width: 30px;
    height: 30px;
  }
}

.statistics h2 + p {
  color: #fff;
}