/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #1C2A4A;
  --color-secondary: #4A6FA5;
  --color-bg-dark: #0F172A;
  --color-bg-light: #F4F7FA;
  --color-text-light: #EDEFF4;
  --color-text-dark: #1C2230;
  --color-accent: #FF6B6B;
  --color-sub-accent: #A9D6E5;
  
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

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

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

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

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

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

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

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

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

a:hover {
  color: var(--color-accent);
}

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

button, .btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--border-radius-full);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

button:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

/* Section Backgrounds */
.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.bg-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}


.bg-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

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

.bg-accent h2,
.bg-accent p {
  color: white;
}

/* Text Colors */
.text-light {
  color: var(--color-text-light);
}

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

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

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bubble {
  0% {
    transform: scale(0.8) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1) translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(0);
    opacity: 0.6;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
}

.animate-fadeIn {
  animation: fadeIn var(--transition-normal) forwards;
}

.animate-slideUp {
  animation: slideUp var(--transition-normal) forwards;
}

.animate-slideDown {
  animation: slideDown var(--transition-normal) forwards;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-normal) forwards;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-normal) forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bubble {
  animation: bubble 3s ease-in-out infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Header Styles - Unique Animation Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform var(--transition-slow), background-color var(--transition-normal);
  padding: var(--space-md) 0;
}

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

.header-scrolled {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.logo {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-light);
  position: relative;
  z-index: 101;
}

.logo .bubble {
  position: relative;
  display: inline-block;
}

.logo .bubble::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0.7;
  animation: bubble 3s ease-in-out infinite;
}

.logo .bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 7px;
  height: 7px;
  background-color: var(--color-sub-accent);
  border-radius: 50%;
  opacity: 0.7;
  animation: bubble 2.5s ease-in-out 0.5s infinite;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--color-text-light);
  transition: var(--transition-normal);
}

.nav {
  position: relative;
}

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

.nav-link {
  margin: 0 var(--space-md);
  font-weight: 500;
  position: relative;
  color: var(--color-text-light);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: calc(var(--space-2xl) * 2) 0 var(--space-2xl);
  position: relative;
  background-color: var(--color-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero h1 {
  color: var(--color-text-light);
}

.hero p {
  color: var(--color-text-light);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  width: 300px;
  height: 300px;
  background-color: rgba(74, 111, 165, 0.1);
  top: -100px;
  right: -150px;
  animation: float 10s ease-in-out infinite alternate;
}

.hero::after {
  width: 200px;
  height: 200px;
  background-color: rgba(169, 214, 229, 0.1);
  bottom: -50px;
  left: -100px;
  animation: float 8s 1s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: slideInLeft var(--transition-slow) forwards;
}

.hero p {
  max-width: 600px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: slideInLeft var(--transition-slow) 0.3s forwards;
}

.hero-cta {
  opacity: 0;
  animation: slideInLeft var(--transition-slow) 0.6s forwards;
}

/* Features Section */
.features {
  position: relative;
  background-color: var(--color-bg-light);
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.feature-card h3 {
  color: var(--color-text-dark);
}

.feature-card p {
  color: var(--color-text-dark);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-accent);
  z-index: 2;
}

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

.feature-card h3 {
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble-animation {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.bubble-1 {
  width: 100px;
  height: 100px;
  background-color: var(--color-accent);
  top: 20%;
  left: 10%;
  animation-duration: 8s;
}

.bubble-2 {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  top: 60%;
  right: 20%;
  animation-duration: 6s;
}

.bubble-3 {
  width: 70px;
  height: 70px;
  background-color: var(--color-sub-accent);
  bottom: 10%;
  left: 30%;
  animation-duration: 10s;
}

/* Testimonials */
.testimonials {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  color: var(--color-text-light);
}

.testimonials p {
  color: var(--color-text-light);
}

.testimonial {
  position: relative;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.12);
}

.testimonial-content {
  position: relative;
  color: var(--color-text-light);
  padding-left: var(--space-lg);
  padding-top: var(--space-md);
}

.testimonial-content p {
  color: var(--color-text-light) !important;
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-lg);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-content::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 5rem;
  font-family: serif;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  font-style: normal;
}

.testimonial-author {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  font-size: var(--font-size-md);
}

.testimonial-author::before {
  content: '\2014';
  margin-right: var(--space-sm);
  color: var(--color-accent);
  font-weight: bold;
}

.testimonial-author span {
  color: var(--color-text-light);
}




.section p i {
  margin-right: var(--space-sm);
  color: var(--color-accent);
  width: 20px;
  text-align: center;
}

.section iframe {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
}

/* Contact Form */
.contact {
  position: relative;
}

.contact-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  animation: float 10s ease-in-out infinite alternate;
}

.contact-bubble-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color-accent);
  top: -50px;
  right: 10%;
}

.contact-bubble-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color-secondary);
  bottom: -50px;
  left: 5%;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform var(--transition-normal);
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

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

.form-input {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check-input {
  margin-top: 5px;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.footer-link {
  margin: 0 var(--space-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

.footer-copyright {
  opacity: 0.7;
  font-size: var(--font-size-sm);
}

/* Cookie Policy Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

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

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

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--space-md));
  margin-right: calc(-1 * var(--space-md));
}

.col {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  flex: 1;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Utility Classes */
.text-center { 
  text-align: center; 
}

.text-center h2,
.text-center h3 {
  text-align: center;
}

.text-left { text-align: left; }
.text-right { text-align: right; }

.my-1 { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.my-2 { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.my-3 { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.my-4 { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }
.my-5 { margin-top: var(--space-2xl); margin-bottom: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }
.p-5 { padding: var(--space-2xl); }

/* 404 Page */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.error-404 {
  text-align: center;
  z-index: 1;
  position: relative;
}

.error-404 h1 {
  font-size: 8rem;
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
  margin-bottom: var(--space-md);
  animation: pulse 4s infinite;
}

.error-404 h2 {
  margin-bottom: var(--space-lg);
}

.bubble-404 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 10s ease-in-out infinite alternate;
}

.bubble-404-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-accent);
  top: -150px;
  right: -150px;
}

.bubble-404-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-sub-accent);
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.bubble-404-3 {
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  top: 20%;
  left: 10%;
  animation-delay: 1s;
}

/* Thank You Page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  animation: pulse 2s infinite;
}

/* FAQ Page */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  padding: var(--space-lg);
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

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

.faq-question::after {
  content: '+';
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Products Section */
.product-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

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

.product-image {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}

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

.product-title {
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.product-description {
  margin-bottom: var(--space-md);
  flex-grow: 1;
  color: var(--color-text-dark);
}

.product-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
  }
  
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.25rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --space-2xl: 3rem;
  }
  
  .container {
    max-width: 540px;
  }
  
  .menu-toggle {
    display: block;
    z-index: 201;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) 0;
    z-index: 200;
    transition: right var(--transition-normal);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: var(--space-md) 0;
  }
  
  .nav-link {
    font-size: var(--font-size-lg);
    padding: var(--space-sm) 0;
  }
  
  .menu-toggle span.active {
    background-color: var(--color-accent);
  }
  
  .menu-toggle span:nth-child(1).active {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle span:nth-child(2).active {
    opacity: 0;
  }
  
  .menu-toggle span:nth-child(3).active {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  
  .hero {
    padding-top: calc(var(--space-2xl) + var(--space-xl));
    padding-bottom: var(--space-xl);
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .testimonial {
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
  }
  
  .testimonial-content {
    padding-left: var(--space-md);
    padding-top: var(--space-sm);
  }
  
  .testimonial-content::before {
    font-size: 3.5rem;
    top: -5px;
  }
  
  .testimonial-content p {
    font-size: var(--font-size-md);
  }
  
  .product-card {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
  }
  
  .col-xs-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xs-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xs-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xs-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xs-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xs-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xs-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xs-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xs-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xs-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xs-12 { flex: 0 0 100%; max-width: 100%; }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    padding-top: calc(var(--space-xl) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }
  
  .hero h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
  }
  
  .hero p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-lg);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .feature-card,
  .product-card {
    padding: var(--space-md);
  }
  
  .testimonial {
    padding: var(--space-md);
  }
  
  .testimonial-content {
    padding-left: var(--space-sm);
    padding-top: var(--space-xs);
  }
  
  .testimonial-content::before {
    font-size: 3rem;
    top: 0;
  }
  
  .testimonial-content p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-size: var(--font-size-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
  }
}