/* Base Variables */
:root {
  /* Primary Colors */
  --primary-color: #6C63FF;
  --primary-dark: #4F46E5;
  --primary-light: #8B85FF;
  
  /* Complementary Colors */
  --complementary-color: #FF9D63;
  --complementary-dark: #E57946;
  --complementary-light: #FFB185;
  
  /* Neutral Colors */
  --dark: #2A2C3D;
  --medium-dark: #444661;
  --medium: #6E7199;
  --medium-light: #A9ABCF;
  --light: #E1E1F2;
  --white: #FFFFFF;
  
  /* Shadow Colors */
  --shadow-light: rgba(106, 99, 255, 0.1);
  --shadow-medium: rgba(106, 99, 255, 0.15);
  --shadow-dark: rgba(42, 44, 61, 0.2);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-complementary: linear-gradient(135deg, var(--complementary-color) 0%, var(--complementary-dark) 100%);
  --gradient-mix: linear-gradient(135deg, var(--primary-color) 0%, var(--complementary-color) 100%);
  
  /* Fonts */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  
  /* Box Shadows - Neuromorphic style */
  --shadow-neuromorphic-light: 12px 12px 24px var(--shadow-light), -12px -12px 24px rgba(255, 255, 255, 0.8);
  --shadow-neuromorphic-medium: 8px 8px 16px var(--shadow-medium), -8px -8px 16px rgba(255, 255, 255, 0.6);
  --shadow-neuromorphic-dark: 5px 5px 10px var(--shadow-dark), -5px -5px 10px rgba(255, 255, 255, 0.4);
}

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

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

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

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

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

ul {
  list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--space-xs) auto var(--space-md);
  border-radius: var(--radius-full);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 6px 15px var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-medium);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-light);
  box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--shadow-light);
}

.btn-text {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem;
  box-shadow: none;
  position: relative;
  font-weight: 600;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

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

.btn-text:hover::after {
  width: 100%;
}

/* Forms */
input, textarea, select {
  font-family: var(--body-font);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-light);
  border-radius: var(--radius-md);
  width: 100%;
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
  box-shadow: inset 3px 3px 7px var(--shadow-light), inset -3px -3px 7px rgba(255, 255, 255, 0.8);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-light);
}

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

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

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

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

.form-checkbox label {
  margin-bottom: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px var(--shadow-light);
  transition: all var(--transition-medium);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  display: block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all var(--transition-medium);
}

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

.nav-desktop ul {
  display: flex;
  gap: var(--space-md);
}

.nav-desktop ul li a {
  color: var(--medium-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-desktop ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

.nav-desktop ul li a:hover {
  color: var(--primary-color);
}

.nav-desktop ul li a:hover::after {
  width: 100%;
}

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

.burger-menu .line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all var(--transition-medium);
}

.burger-menu.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: var(--white);
  padding: 100px var(--space-lg) var(--space-lg);
  transition: right var(--transition-slow);
  box-shadow: -5px 0 15px var(--shadow-medium);
  z-index: 1000;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile ul li a {
  color: var(--medium-dark);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: var(--space-xs) 0;
}

.nav-mobile ul li a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 80px;
  overflow: hidden;
  color: var(--white);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(42, 44, 61, 0.8), rgba(106, 99, 255, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-bottom: var(--space-lg);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

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

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

.stat-card h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
}

.stat-card p {
  color: var(--light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Features Section */
.features {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neuromorphic-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-neuromorphic-light);
}

.card-image {
  width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  width: 100%;
  height: 250px;
}

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

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

.card-content {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.feature-list {
  margin: var(--space-md) 0;
}

.feature-list li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: 1.5rem;
  color: var(--medium-dark);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* External Resources Section */
.external-resources {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e3e6f0 100%);
}

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

.resource-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neuromorphic-medium);
  transition: transform var(--transition-medium);
}

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

.resource-card h3 {
  margin-bottom: var(--space-sm);
}

.resource-card h3 a {
  color: var(--primary-color);
  transition: color var(--transition-medium);
}

.resource-card h3 a:hover {
  color: var(--primary-dark);
}

.resource-card p {
  margin-bottom: 0;
  color: var(--medium);
}

/* Events Section */
.events {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-date {
  min-width: 100px;
  padding-right: var(--space-md);
  text-align: right;
  position: relative;
}

.timeline-date::after {
  content: "";
  position: absolute;
  top: 15px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--shadow-light);
}

.timeline-date h3 {
  margin-bottom: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.timeline-date p {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.timeline-content {
  flex: 1;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-left: var(--space-lg);
  box-shadow: var(--shadow-neuromorphic-medium);
  transition: transform var(--transition-medium);
}

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

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

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

.timeline-content strong {
  color: var(--medium-dark);
}

/* Insights Section */
.insights {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
}

.insights-container {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.insight-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neuromorphic-medium);
}

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

.insight-image:hover img {
  transform: scale(1.03);
}

.insight-content {
  flex: 1;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-neuromorphic-medium);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  cursor: pointer;
  background: var(--white);
  transition: background-color var(--transition-medium);
}

.accordion-header:hover {
  background: rgba(106, 99, 255, 0.05);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-medium);
}

.accordion-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-content p {
  padding-bottom: var(--space-md);
}

/* Blog Section */
.blog {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neuromorphic-medium);
  transition: transform var(--transition-medium);
}

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

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  color: var(--medium);
}

.blog-card .card-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.blog-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

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

/* Success Stories Section */
.success-stories {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf5 100%);
}

.stories-slider {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.story-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-md);
  box-shadow: var(--shadow-neuromorphic-medium);
  transition: transform var(--transition-medium);
  margin-bottom: var(--space-md);
}

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

.story-image {
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.story-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light);
  box-shadow: 0 4px 10px var(--shadow-light);
}

.story-content {
  flex: 1;
}

.story-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: var(--medium-dark);
}

.story-author {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0;
}

.story-role {
  font-size: 0.9rem;
  color: var(--medium);
  margin-bottom: 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-widget {
  flex: 1;
  max-width: 250px;
  padding: var(--space-md);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "%";
  font-size: 1.5rem;
  position: absolute;
  top: 5px;
  right: -25px;
}

.stat-widget p {
  font-size: 1rem;
  color: var(--medium-dark);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  gap: var(--space-lg);
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: var(--space-lg);
}

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

.contact-details {
  margin-top: var(--space-md);
}

.detail-item {
  display: flex;
  margin-bottom: var(--space-sm);
}

.detail-icon {
  margin-right: var(--space-sm);
  color: var(--primary-color);
  font-size: 1.2rem;
}

.detail-item p {
  margin-bottom: 0;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-neuromorphic-medium);
}

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

.contact-form {
  flex: 1;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neuromorphic-medium);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-info {
  flex: 2 1 300px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 2rem;
}

.footer-info p {
  color: var(--medium-light);
  margin-bottom: var(--space-md);
}

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

.social-links a {
  color: var(--medium-light);
  transition: color var(--transition-medium), transform var(--transition-medium);
}

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

.footer-links {
  flex: 3 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-column {
  flex: 1 1 150px;
}

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

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

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

.footer-column ul li a {
  color: var(--medium-light);
  transition: color var(--transition-medium), padding-left var(--transition-medium);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter {
  flex: 2 1 300px;
}

.footer-newsletter h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-newsletter h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.footer-newsletter p {
  color: var(--medium-light);
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: none;
}

.newsletter-form input::placeholder {
  color: var(--medium-light);
}

.newsletter-form button {
  flex-shrink: 0;
}

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

.footer-bottom p {
  color: var(--medium-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 10px var(--shadow-light);
  padding: var(--space-md);
  z-index: 999;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  padding-right: var(--space-md);
}

.cookie-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

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

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0.3, 1.5), transform 0.8s cubic-bezier(0.5, 0, 0.3, 1.5);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
}

.success-content {
  max-width: 600px;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neuromorphic-medium);
}

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

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

/* Privacy & Terms Pages */
.page-content {
  padding: 150px var(--space-lg) var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.page-content ul, .page-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --space-xl: 3rem;
  }
  
  .insights-container {
    flex-direction: column;
  }
  
  .insight-image, .insight-content {
    width: 100%;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .story-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .story-image {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    gap: var(--space-md);
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}