:root {
  /* Main Colors */
  --primary-color: #3D56B2;
  --primary-dark: #2A3E8C;
  --primary-light: #5A73D8;
  --secondary-color: #FF6B35;
  --secondary-dark: #E04E18;
  --secondary-light: #FF8A5E;
  --accent-color: #14E8D1;
  --accent-dark: #0AB9A9;
  --accent-light: #57F5E3;
  
  /* Neutral Colors */
  --dark: #151825;
  --dark-gray: #333645;
  --medium-gray: #7A7C8B;
  --light-gray: #E0E1E8;
  --light: #F8F9FD;
  --white: #FFFFFF;
  
  /* Background Colors */
  --bg-primary: var(--light);
  --bg-secondary: var(--dark);
  --bg-accent: #F1F5FF;
  
  /* Text Colors */
  --text-primary: var(--dark);
  --text-secondary: var(--medium-gray);
  --text-light: var(--white);
  --text-accent: var(--primary-color);
  
  /* Border Colors */
  --border-light: var(--light-gray);
  --border-dark: var(--dark-gray);
  
  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(21, 24, 37, 0.08);
  --shadow-md: 0 4px 16px rgba(21, 24, 37, 0.1);
  --shadow-lg: 0 8px 32px rgba(21, 24, 37, 0.15);
  
  /* Animation Timing */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --transition-slow: 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-circle: 50%;
  
  /* Container Width */
  --container-width: 1200px;
  
  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', 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;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Z-index */
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  line-height: 1.3;
}

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);
  color: var(--text-secondary);
}

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

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

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

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

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

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-sm);
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(1px);
}

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

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

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

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

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

.btn-tertiary:hover {
  background-color: var(--primary-color);
  color: var(--white) !important;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

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

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.logo {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
}

.logo a {
  color: var(--primary-color);
}

.logo a h1 {
  margin-bottom: 0;
  font-size: var(--font-size-2xl);
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.main-nav ul li a {
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding: var(--space-sm) 0;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}

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

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

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 24, 37, 0.8), rgba(21, 24, 37, 0.5));
  z-index: var(--z-back);
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: var(--z-normal);
}

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

.hero-content p {
  color: var(--white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  max-width: 80%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Services Section */
.services {
  padding: var(--space-xl) 0;
  background-color: var(--bg-primary);
}

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

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

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

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

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

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

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

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

.card-content p {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.card-content .btn {
  align-self: center;
  margin-top: auto;
}

/* Statistics Section */
.statistics {
  position: relative;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.statistics .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 24, 37, 0.9), rgba(21, 24, 37, 0.7));
  z-index: var(--z-back);
}

.statistics .section-title {
  color: var(--white);
  position: relative;
  z-index: var(--z-normal);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  z-index: var(--z-normal);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  flex: 1;
  min-width: 200px;
}

.stat-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-ring__circle {
  stroke-dasharray: 408;
  stroke-dashoffset: 408;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset var(--transition-slow) ease-out;
}

.stat-number {
  position: absolute;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--white);
}

.stat-item h3 {
  color: var(--white);
  font-size: var(--font-size-lg);
  margin-top: var(--space-md);
}

/* Process Section */
.process {
  padding: var(--space-xl) 0;
  background-color: var(--bg-primary);
}

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

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

.process-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: var(--space-xl);
  width: 50%;
}

.process-item:nth-child(even) {
  margin-left: auto;
  justify-content: flex-start;
}

.process-icon {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-normal);
}

.process-item:nth-child(even) .process-icon {
  left: 100%;
}

.animated-icon {
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

.process-content {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-left: var(--space-xl);
  width: calc(100% - var(--space-xl));
}

.process-item:nth-child(even) .process-content {
  margin-left: 0;
  margin-right: var(--space-xl);
}

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

/* Innovation Section */
.innovation {
  position: relative;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.innovation .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 24, 37, 0.85), rgba(21, 24, 37, 0.65));
  z-index: var(--z-back);
}

.innovation .section-title,
.innovation .section-subtitle {
  color: var(--white);
  position: relative;
  z-index: var(--z-normal);
}

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

.innovation-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.innovation-icon {
  margin-bottom: var(--space-md);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.innovation-item p {
  color: var(--light-gray);
}

/* Resources Section */
.resources {
  padding: var(--space-xl) 0;
  background-color: var(--bg-primary);
}

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

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

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

.resource-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.resource-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: var(--radius-sm);
}

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

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

.resource-item ul li a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.resource-item ul li a:hover {
  color: var(--primary-color);
}

/* Sustainability Section */
.sustainability {
  position: relative;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.sustainability .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 24, 37, 0.8), rgba(21, 24, 37, 0.6));
  z-index: var(--z-back);
}

.sustainability .section-title,
.sustainability .section-subtitle {
  color: var(--white);
  position: relative;
  z-index: var(--z-normal);
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: var(--z-normal);
}

.sustainability-text {
  flex: 1;
  min-width: 300px;
}

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

.sustainability-text p {
  color: var(--light-gray);
  margin-bottom: var(--space-lg);
}

.sustainability-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

/* Community Section */
.community {
  padding: var(--space-xl) 0;
  background-color: var(--bg-primary);
}

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

.community-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.community-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.community-item h3 {
  color: var(--primary-color);
  margin: var(--space-md) 0;
  padding: 0 var(--space-lg);
  text-align: center;
}

.community-item p {
  padding: 0 var(--space-lg) var(--space-lg);
  text-align: center;
  color: var(--text-secondary);
}

/* Press Section */
.press {
  padding: var(--space-xl) 0;
  background-color: var(--bg-accent);
}

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

.press-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.press-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

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

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

.press-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.press-date {
  margin-top: auto;
  color: var(--medium-gray);
  font-size: var(--font-size-sm);
  font-style: italic;
}

/* Careers Section */
.careers {
  position: relative;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.careers .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 24, 37, 0.8), rgba(21, 24, 37, 0.6));
  z-index: var(--z-back);
}

.careers .section-title,
.careers .section-subtitle {
  color: var(--white);
  position: relative;
  z-index: var(--z-normal);
}

.careers-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: var(--z-normal);
}

.careers-text {
  flex: 1;
  min-width: 300px;
}

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

.careers-text p {
  color: var(--light-gray);
  margin-bottom: var(--space-lg);
}

.careers-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  transition: border-color var(--transition-fast);
}

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

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

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

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

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.contact-info-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: var(--radius-sm);
}

.contact-info-item p {
  margin-bottom: var(--space-sm);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.social-links a {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

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

.footer-logo p {
  color: var(--light-gray);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-links-column {
  flex: 1;
  min-width: 160px;
}

.footer-links-column h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

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

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

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

.footer-links-column ul li a:hover {
  color: var(--secondary-light);
}

.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-social h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

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

.footer-social .social-links a {
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.footer-social .social-links a:hover {
  background-color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  margin: 0;
  color: var(--medium-gray);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--medium-gray);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(21, 24, 37, 0.95);
  padding: var(--space-lg);
  z-index: var(--z-modal);
}

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

.cookie-content p {
  color: var(--white);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: var(--font-weight-medium);
  transition: background-color var(--transition-fast);
}

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

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

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

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

.success-page p {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* Privacy & Terms Pages */
.legal-page {
  padding: 120px 0 var(--space-xl);
  background-color: var(--bg-primary);
}

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

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

.legal-content h2 {
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

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

.legal-content ul {
  margin-bottom: var(--space-lg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-item {
    width: 100%;
    padding-left: 70px;
  }
  
  .process-item:nth-child(even) {
    margin-left: 0;
  }
  
  .process-icon {
    left: 30px;
  }
  
  .process-item:nth-child(even) .process-icon {
    left: 30px;
  }
  
  .process-content {
    margin-left: 0;
    width: 100%;
  }
  
  .process-item:nth-child(even) .process-content {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height var(--transition-medium);
    box-shadow: var(--shadow-md);
    z-index: var(--z-fixed);
  }
  
  .main-nav.active {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: var(--space-lg);
  }
  
  .main-nav ul li {
    margin: 0 0 var(--space-md) 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: var(--font-size-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: var(--space-lg);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: var(--space-md);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
    margin-top: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2.5rem;
    --space-lg: 1.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .social-links {
    flex-direction: column;
    width: 100%;
  }
  
  .social-links a {
    text-align: center;
  }
}
html,body{
  overflow-x: hidden;
}