/* Base Variables */
:root {
  /* Primary Colors */
  --primary-100: #f5e6ff;
  --primary-200: #e0c2ff;
  --primary-300: #c894ff;
  --primary-400: #b06eff;
  --primary-500: #9747FF;
  --primary-600: #7a39cc;
  --primary-700: #5c2b99;
  --primary-800: #3e1d66;
  --primary-900: #1f0e33;

  /* Secondary Colors */
  --secondary-100: #e5fff2;
  --secondary-200: #c2ffe0;
  --secondary-300: #94ffc8;
  --secondary-400: #6effb0;
  --secondary-500: #47FF98;
  --secondary-600: #39cc7a;
  --secondary-700: #2b995c;
  --secondary-800: #1d663e;
  --secondary-900: #0e331f;

  /* Accent Colors */
  --accent-100: #fff5e6;
  --accent-200: #ffe0c2;
  --accent-300: #ffc894;
  --accent-400: #ffb06e;
  --accent-500: #FF9747;
  --accent-600: #cc7a39;
  --accent-700: #995c2b;
  --accent-800: #663e1d;
  --accent-900: #331f0e;

  /* Neutral Colors */
  --neutral-50: #f9f9f9;
  --neutral-100: #f2f2f2;
  --neutral-200: #e6e6e6;
  --neutral-300: #cccccc;
  --neutral-400: #b3b3b3;
  --neutral-500: #999999;
  --neutral-600: #666666;
  --neutral-700: #4d4d4d;
  --neutral-800: #333333;
  --neutral-900: #1a1a1a;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-800);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

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

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

section {
  padding: var(--space-xxl) 0;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  border-radius: var(--border-radius-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  box-shadow: var(--shadow-md);
}

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

.primary-btn:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: white;
}

.secondary-btn {
  background-color: var(--secondary-500);
  color: var(--neutral-800);
}

.secondary-btn:hover {
  background-color: var(--secondary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--neutral-800);
}

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

.outline-btn:hover {
  background-color: var(--primary-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

button, 
input[type="submit"] {
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-600);
}

.logo span {
  color: var(--neutral-800);
}

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

.nav-menu {
  display: flex;
  list-style: none;
}

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

.nav-menu a {
  color: var(--neutral-700);
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

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

.nav-menu a:hover {
  color: var(--primary-500);
  text-decoration: none;
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all var(--transition-normal);
  background-color: var(--neutral-700);
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-xxxl) 0;
  margin-top: 70px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: relative;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Particle Animation */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
  animation: float 8s infinite linear;
}

.hero-particles::before {
  top: 60%;
  left: 30%;
  animation-delay: 1s;
}

.hero-particles::after {
  top: 40%;
  left: 70%;
  animation-delay: 3s;
}

/* About Section */
.about {
  background-color: var(--neutral-50);
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20px;
  left: -20px;
  border: 2px solid var(--primary-300);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

/* Mission Section */
.mission {
  background-color: var(--primary-100);
  position: relative;
  overflow: hidden;
}

.mission-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
}

.mission-values {
  margin-top: var(--space-xl);
}

.value-item {
  margin-bottom: var(--space-md);
}

.value-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--primary-600);
}

.progress-bar {
  background-color: var(--neutral-200);
  height: 8px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(to right, var(--primary-400), var(--primary-600));
  border-radius: var(--border-radius-sm);
}

/* Services Section */
.services {
  background-color: var(--neutral-50);
}

.services-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

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

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

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

/* Gallery Section */
.gallery {
  background-color: var(--secondary-100);
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  text-align: center;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  color: white;
  margin-bottom: var(--space-xs);
}

.overlay p {
  color: var(--neutral-200);
  margin-bottom: 0;
}

/* Process Section */
.process {
  background-color: var(--neutral-50);
}

.process-content {
  display: flex;
  gap: var(--space-xxl);
  align-items: center;
}

.process-steps {
  flex: 1.2;
}

.process-step {
  display: flex;
  margin-bottom: var(--space-xl);
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-500);
  background-color: var(--primary-100);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.step-content {
  padding-top: var(--space-xs);
}

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

.process-image {
  flex: 0.8;
  text-align: center;
}

.process-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

/* Behind Scenes Section */
.behind-scenes {
  background-color: var(--accent-100);
}

.behind-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.behind-image {
  flex: 1;
  text-align: center;
}

.behind-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.behind-text {
  flex: 1;
}

.behind-text h3 {
  color: var(--accent-600);
  margin-bottom: var(--space-md);
}

/* Resources Section */
.resources {
  background-color: var(--neutral-50);
}

.resources-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

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

.resource-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.resource-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/* Accolades Section */
.accolades {
  background-color: var(--primary-100);
}

.accolades-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.accolades-text {
  flex: 1;
}

.awards-list {
  margin-top: var(--space-lg);
}

.award-item {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.award-item h4 {
  color: var(--primary-600);
  margin-bottom: var(--space-xs);
}

.award-item p {
  margin-bottom: 0;
  color: var(--neutral-600);
}

.accolades-image {
  flex: 1;
  text-align: center;
}

.accolades-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-50);
}

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

.accordion {
  margin-top: var(--space-lg);
}

.accordion-item {
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: white;
}

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

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: var(--neutral-800);
}

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

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-item.active .accordion-content {
  padding: 0 var(--space-lg) var(--space-lg);
}

/* Contact Section */
.contact {
  background-color: var(--secondary-100);
}

.contact-content {
  display: flex;
  gap: var(--space-xxl);
}

.contact-info {
  flex: 1;
}

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

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

.info-item h4 {
  color: var(--secondary-600);
  margin-bottom: var(--space-xs);
}

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

.contact-form-container {
  flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  background-color: var(--neutral-50);
  font-family: var(--font-body);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-200);
  padding: var(--space-xxl) 0 var(--space-lg);
}

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

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

.footer-logo span {
  color: var(--primary-400);
}

.footer-logo p {
  color: var(--neutral-400);
  margin-bottom: 0;
}

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

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

.footer ul {
  list-style: none;
}

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

.footer ul li a {
  color: var(--neutral-300);
  transition: color var(--transition-normal);
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--primary-400);
  text-decoration: none;
}

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

.footer-social ul li a {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.footer-social ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-social ul li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239747FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.footer-social ul li:nth-child(2) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239747FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z'%3E%3C/path%3E%3C/svg%3E");
}

.footer-social ul li:nth-child(3) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239747FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-400);
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-900);
  color: white;
  padding: var(--space-lg);
  z-index: 1000;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: var(--space-lg);
  color: var(--neutral-200);
}

.cookie-btn {
  background-color: var(--primary-500);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

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

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

.success-icon {
  font-size: 5rem;
  color: var(--secondary-500);
  margin-bottom: var(--space-lg);
}

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

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

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: var(--space-xl);
  color: var(--primary-600);
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-500);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-500);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--primary-600);
  text-decoration: none;
}

.read-more:hover::after {
  transform: translateY(-50%) translateX(3px);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-content,
  .mission-content,
  .process-content,
  .behind-content,
  .accolades-content,
  .contact-content {
    flex-direction: column;
  }
  
  .process-image,
  .about-image,
  .mission-image,
  .behind-image,
  .accolades-image {
    margin-top: var(--space-xl);
    max-width: 100%;
  }
  
  .accolades-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .navigation {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    transition: left var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--space-xl) 0;
  }
  
  .nav-menu li {
    margin: var(--space-md) 0;
  }
  
  .navigation.active {
    left: 0;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: var(--space-sm);
    margin-right: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.8s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.8s ease 0.4s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

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

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

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}
.hamburger{
  display: none;
}