:root {
  /* Primary Colors */
  --primary-color: #ff6b35;
  --primary-hover: #ff8c5a;
  --primary-dark: #e04e1a;
  
  /* Secondary Colors */
  --secondary-color: #2ec4b6;
  --secondary-hover: #3ddece;
  --secondary-dark: #1a9d90;
  
  /* Accent Colors */
  --accent-1: #ff9f1c;
  --accent-2: #7b68ee;
  --accent-3: #e71d36;
  
  /* Neutral Colors */
  --dark: #1a1a2e;
  --dark-medium: #30334e;
  --medium: #555c91;
  --light-medium: #8789c0;
  --light: #e6e6ff;
  --white: #ffffff;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-backdrop: blur(12px);
  
  /* Dark Glassmorphism */
  --dark-glass-bg: rgba(26, 26, 46, 0.75);
  --dark-glass-border: rgba(255, 255, 255, 0.05);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-1));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-2));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-medium));
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  
  /* Animation */
  --bounce-timing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --smooth-timing: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Z-index */
  --z-header: 100;
  --z-modal: 200;
  --z-overlay: 300;
  --z-tooltip: 400;
  --z-cookie: 900;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
  color: var(--dark);
}

header {
  background-color: #30334e !important;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s var(--smooth-timing);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

/* Section Styles */
.section {
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  color: var(--dark);
}

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

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--bounce-timing), box-shadow 0.3s var(--smooth-timing);
}

.dark-glassmorphism {
  background: var(--dark-glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--dark-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--bounce-timing);
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--accent-1));
  color: var(--white);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-hover), var(--accent-2));
  color: var(--white);
}

button, 
input[type='submit'] {
  font-family: var(--font-body);
  cursor: pointer;
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s var(--smooth-timing);
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s var(--bounce-timing);
}

.read-more:hover {
  color: var(--primary-hover);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: var(--space-sm) 0;
  transition: all 0.3s var(--smooth-timing);
}

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

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

.logo img {
  max-height: 60px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}

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

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s var(--bounce-timing);
}

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

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

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--smooth-timing);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--dark-glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  padding: var(--space-md) 0;
  transform: translateY(-100%);
  transition: transform 0.3s var(--bounce-timing);
  z-index: 99;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.2rem;
  padding: var(--space-sm);
  display: block;
  text-align: center;
  width: 100%;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.hero-content {
  max-width: 700px;
}

.hero-content h1, .hero-content h2, .hero-content p {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 1s var(--bounce-timing) forwards;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--bounce-timing) 0.2s forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--bounce-timing) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--bounce-timing) 0.6s forwards;
}

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

/* Insights Section */
.insights-section {
  background-color: var(--light);
}

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

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s var(--bounce-timing);
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--smooth-timing);
}

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

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

.card-content h3 {
  margin-top: 0;
  color: var(--dark);
}

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

/* Methodology Section */
.methodology-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.methodology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/methodology-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: 0;
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
}

.methodology-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: var(--space-xs);
}

/* Services Section */
.services-section {
  background-color: var(--light);
  position: relative;
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
}

.services-carousel::-webkit-scrollbar {
  height: 8px;
}

.services-carousel::-webkit-scrollbar-track {
  background: var(--light-medium);
  border-radius: var(--radius-full);
}

.services-carousel::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.service-card {
  min-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--bounce-timing);
}

.prev-btn:hover, .next-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--white);
}

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

.case-study-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.case-study-card .card-image {
  height: 200px;
}

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

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

.resource-category h3 {
  color: var(--dark);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-md);
}

.resource-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.resource-category a {
  display: inline-block;
  padding: var(--space-xs) 0;
  position: relative;
  transition: all 0.3s var(--smooth-timing);
}

.resource-category a::after {
  content: '→';
  opacity: 0;
  margin-left: 5px;
  transition: all 0.3s var(--bounce-timing);
}

.resource-category a:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--white);
  position: relative;
}

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

.workshop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.workshop-details {
  background-color: rgba(0, 0, 0, 0.05);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.workshop-details p {
  margin-bottom: var(--space-xs);
}

.workshop-details p:last-child {
  margin-bottom: 0;
}

/* Press Section */
.press-section {
  background-color: var(--light);
}

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

.press-card {
  padding: var(--space-md);
  height: 100%;
}

.press-date {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.blog-date {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.office-hours h4 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.office-hours p {
  margin-bottom: var(--space-xs);
}

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

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--light-medium);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s var(--smooth-timing);
}

.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(255, 107, 53, 0.2);
}

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

.toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle input {
  display: none;
}

.toggle-slider {
  position: relative;
  width: 50px;
  height: 24px;
  background-color: var(--light-medium);
  border-radius: var(--radius-full);
  margin-right: var(--space-sm);
  transition: all 0.3s var(--smooth-timing);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.3s var(--bounce-timing);
}

.toggle input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo p {
  margin-top: var(--space-sm);
  color: var(--light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-nav h3,
.footer-legal h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

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

.footer-nav ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-legal li,
.footer-social li {
  margin-bottom: var(--space-sm);
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  color: var(--light);
  transition: all 0.3s var(--smooth-timing);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

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

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  color: var(--white);
  padding: var(--space-md);
  z-index: var(--z-cookie);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.btn-cookie {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s var(--bounce-timing);
}

.btn-cookie:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  padding-top: 80px;
}

.success-container {
  text-align: center;
  max-width: 600px;
  padding: var(--space-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 3rem;
}

.success-title {
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.success-message {
  margin-bottom: var(--space-lg);
  color: var(--medium);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--space-lg);
}

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

.page-content h1 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

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

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

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

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

/* Icon Animations */
.icon-location, .icon-phone, .icon-email {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3px;
}

.icon-location {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff6b35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.icon-phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff6b35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

.icon-email {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ff6b35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>');
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.animated-title {
  animation: bounce 2s var(--bounce-timing);
}

/* Media Queries */
@media (max-width: 1024px) {
  .methodology-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: var(--space-sm);
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-md) 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .methodology-steps,
  .contact-details {
    gap: var(--space-sm);
  }
  
  .step {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
  
  .form-toggle {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .toggle-label {
    margin-top: var(--space-xs);
  }
}