:root {
  /* Brutalist Triadic Color Scheme */
  --primary-color: #ff2e63;
  --secondary-color: #2eff9e;
  --tertiary-color: #2e63ff;
  
  /* Darker Variations */
  --primary-dark: #cc1a4c;
  --secondary-dark: #1acc7e;
  --tertiary-dark: #1a4ccc;
  
  /* Lighter Variations */
  --primary-light: #ff5c83;
  --secondary-light: #5cffb1;
  --tertiary-light: #5c83ff;
  
  /* Brutalist Neutrals */
  --neutral-900: #0f0f0f;
  --neutral-800: #1a1a1a;
  --neutral-700: #2c2c2c;
  --neutral-600: #3d3d3d;
  --neutral-500: #5c5c5c;
  --neutral-400: #7a7a7a;
  --neutral-300: #a0a0a0;
  --neutral-200: #d1d1d1;
  --neutral-100: #f0f0f0;
  --neutral-50: #f8f8f8;
  
  /* Font Sizes */
  --font-size-xxl: 3.5rem;
  --font-size-xl: 2.5rem;
  --font-size-lg: 2rem;
  --font-size-md: 1.25rem;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  
  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-width: 3px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.25);
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-medium: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
}

h1 {
  font-size: var(--font-size-xxl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h2 {
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

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

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: var(--font-size-md);
  color: var(--neutral-500);
  max-width: 700px;
  margin: 0 auto;
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: var(--font-size-base);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: var(--border-width) solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before, button::before, input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width var(--transition-medium);
  z-index: -1;
}

.btn:hover::before, button:hover::before, input[type='submit']:hover::before {
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: var(--tertiary-dark);
  border-color: var(--tertiary-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

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

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

.header.scrolled {
  padding: var(--space-xs) 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 800;
}

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

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

.desktop-nav a {
  color: var(--neutral-700);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

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

.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(--neutral-700);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  background-color: var(--neutral-900);
  padding: var(--space-lg) 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: var(--space-sm) 0;
  color: white;
  font-size: var(--font-size-md);
  text-align: center;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

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

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

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

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-md);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: clamp(var(--font-size-md), 3vw, var(--font-size-lg));
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

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

.card {
  background-color: white;
  border: var(--border-width) solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.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: 1;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

/* Projects Section */
.projects {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
  overflow: hidden;
}

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

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: var(--space-lg) 0;
  position: relative;
}

.timeline-content {
  position: relative;
  background-color: white;
  border: var(--border-width) solid var(--neutral-200);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  width: calc(50% - 50px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 50%;
  margin-left: 50px;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-content .date {
  position: absolute;
  top: -25px;
  right: var(--space-lg);
  background-color: var(--secondary-color);
  color: var(--neutral-900);
  padding: var(--space-xs) var(--space-sm);
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.timeline-content h3 {
  margin-bottom: var(--space-md);
  color: var(--neutral-900);
}

.timeline-content .image-container {
  margin: var(--space-md) 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.timeline-content:hover .image-container img {
  transform: scale(1.05);
}

/* Statistics Section */
.statistics {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-900);
  color: white;
}

.statistics .section-header h2,
.statistics .section-header p {
  color: white;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: var(--space-md);
}

.stat-number {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--font-size-md);
  color: var(--neutral-200);
  max-width: 200px;
  margin: 0 auto;
}

.stats-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--neutral-800);
  border-radius: var(--border-radius-lg);
}

.stats-chart {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin: 0 auto;
}

.stats-chart img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

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

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

.stats-text p {
  color: var(--neutral-200);
}

/* Insights Section */
.insights {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-50);
}

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

.insight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.insight-item h3 {
  margin-bottom: var(--space-sm);
  text-align: center;
}

.insight-item p {
  text-align: center;
}

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.process-container {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

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

.process-number {
  flex: 0 0 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  font-size: var(--font-size-lg);
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  border-radius: 50%;
  margin-right: var(--space-lg);
  position: relative;
  z-index: 2;
}

.process-content {
  flex: 1;
  padding-top: var(--space-xs);
}

.process-content h3 {
  margin-bottom: var(--space-sm);
}

.behind-scenes-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.behind-scenes-image img {
  width: 100%;
  height: auto;
}

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

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

.resource-item {
  background-color: white;
  border: var(--border-width) solid var(--neutral-200);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.resource-content {
  padding: var(--space-lg);
}

.resource-content h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.resource-content h3 a {
  color: var(--tertiary-color);
  transition: color var(--transition-fast);
}

.resource-content h3 a:hover {
  color: var(--tertiary-dark);
  text-decoration: none;
}

.resource-desc {
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
}

.resource-link {
  display: inline-block;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--font-size-sm);
  position: relative;
  padding-right: 25px;
}

.resource-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.resource-link:hover::after {
  transform: translate(5px, -50%);
}

/* Sustainability Section */
.sustainability {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

.sustainability-image img {
  width: 100%;
  height: auto;
}

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

.sustainability-cards .card-image {
  height: 200px;
}

/* Awards Section */
.awards {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-50);
}

.awards-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.award-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: white;
  border: var(--border-width) solid var(--neutral-200);
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.award-icon {
  flex: 0 0 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary-color);
}

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

.award-content {
  flex: 1;
}

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

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

.contact .section-header h2,
.contact .section-header p {
  color: white;
}

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

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

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

.contact-info ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--neutral-200);
}

.contact-info ul li i {
  margin-right: var(--space-sm);
  color: var(--primary-color);
}

.contact-social h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

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

.social-icons a {
  display: inline-block;
  color: var(--neutral-200);
  font-size: var(--font-size-base);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

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

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

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--neutral-800);
  border: none;
  border-bottom: 3px solid var(--neutral-600);
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Footer Styles */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-200);
  padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-about h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.footer-about span {
  color: white;
}

.footer-about p {
  color: var(--neutral-300);
}

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

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

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-legal a {
  color: var(--neutral-300);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
  text-decoration: none;
}

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

.footer-subscribe input {
  padding: var(--space-sm);
  background-color: var(--neutral-800);
  border: none;
  border-bottom: 3px solid var(--neutral-600);
  color: white;
  font-family: 'Rubik', sans-serif;
}

.footer-subscribe input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer-subscribe .btn {
  align-self: flex-start;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-700);
  gap: var(--space-md);
}

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

.footer-social a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

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

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

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

.success-page p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
  padding: 150px var(--space-md) var(--space-xl);
}

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

.privacy-content h1,
.terms-content h1 {
  margin-bottom: var(--space-lg);
}

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

.privacy-content p,
.terms-content p {
  margin-bottom: var(--space-md);
}

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

.privacy-content li,
.terms-content li {
  margin-bottom: var(--space-xs);
}

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

.stat-number.animated {
  animation: countUp 1s forwards;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  :root {
    --font-size-xxl: 3rem;
    --font-size-xl: 2.2rem;
    --font-size-lg: 1.8rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    left: 80px !important;
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-xxl: 2.5rem;
    --font-size-xl: 2rem;
    --font-size-lg: 1.6rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .services-grid,
  .insights-grid,
  .sustainability-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-content p {
    margin: 0 auto var(--space-lg);
  }
  
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .process-number {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .award-item {
    flex-direction: column;
    text-align: center;
  }
  
  .award-icon {
    margin-bottom: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --font-size-xxl: 2.2rem;
    --font-size-xl: 1.8rem;
    --font-size-lg: 1.4rem;
    --space-xl: 2.5rem;
    --space-xxl: 4rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    padding: var(--space-md);
    left: 50px !important;
  }
  
  .timeline-content .date {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: var(--space-sm);
  }
}