:root {
  /* Color palette - Brutalist with Eco-minimalist touches */
  --color-primary: #ff3e4d;
  --color-primary-dark: #e02c3c;
  --color-secondary: #2ecfca;
  --color-secondary-dark: #1eafaa;
  --color-tertiary: #ffb703;
  --color-tertiary-dark: #e5a400;
  --color-dark: #111111;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-gray-light: #e9ecef;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* 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-full: 50%;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
  position: relative;
  color: var(--color-dark);
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 0 var(--color-primary-dark);
}

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

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
  box-shadow: 0 4px 0 var(--color-secondary-dark);
}

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

.btn-tertiary {
  background-color: var(--color-tertiary);
  color: var(--color-dark);
  box-shadow: 0 4px 0 var(--color-tertiary-dark);
}

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

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo a {
  text-decoration: none;
  color: inherit;
}

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

.desktop-nav a {
  padding: 0.5rem 1rem;
  font-weight: 500;
  position: relative;
}

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

.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 {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-light);
  overflow: hidden;
  transition: height var(--transition-normal);
  z-index: 999;
}

.mobile-nav.active {
  height: calc(100vh - 70px);
}

.mobile-nav ul {
  list-style: none;
  padding: 2rem;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: var(--space-sm);
}

.mobile-nav a {
  display: block;
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

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

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

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

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  margin: 0;
  font-weight: 500;
}

/* Methodology Section */
.methodology {
  padding: var(--space-lg) 0;
  background-color: var(--color-light);
}

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

.methodology-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.methodology-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);
}

.methodology-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 {
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  position: relative;
}

.card-content h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: 0.5rem;
}

.progress-container {
  margin-top: auto;
  padding-top: var(--space-sm);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress-bar {
  height: 8px;
  background-color: var(--color-gray-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.progress-value {
  text-align: right;
  font-weight: 600;
  color: var(--color-primary);
}

.methodology-toggle {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-sm) 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-light);
  transition: var(--transition-normal);
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-normal);
}

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

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

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Webinars Section */
.webinars {
  padding: var(--space-lg) 0;
  background-color: var(--color-gray-light);
}

.webinar-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.webinar-slide {
  display: none;
}

.webinar-slide:first-child {
  display: block;
}

.webinar-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.webinar-date {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.webinar-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.prev-btn, .next-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

.webinar-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--color-gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--color-primary);
}

/* External Resources Section */
.external-resources {
  padding: var(--space-lg) 0;
  background-color: white;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  align-items: center;
}

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

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

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

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

.resource-card .card-content {
  padding: var(--space-md);
  text-align: center;
}

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

.sustainability .section-title, 
.sustainability .section-subtitle {
  color: white;
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.sustainability-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.eco-metrics {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.metric:hover {
  transform: translateY(-5px);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-tertiary);
}

.metric-label {
  font-size: 0.9rem;
  text-align: center;
}

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

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
}

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

.cta-container {
  text-align: center;
  margin-top: var(--space-md);
}

/* Statistics Section */
.statistics {
  padding: var(--space-lg) 0;
  background-color: var(--color-light);
}

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

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

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

.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-gray-light);
}

.stats-icon {
  font-size: 2rem;
}

.stats-chart {
  width: 100%;
  padding: var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-chart img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.stats-content {
  padding: var(--space-md);
}

/* Gallery Section */
.gallery {
  padding: var(--space-lg) 0;
  background-color: white;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: var(--space-sm);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

.gallery-caption h4 {
  margin: 0 0 0.5rem;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.modal-caption {
  color: white;
  text-align: center;
  padding: var(--space-sm);
}

/* Contact Section */
.contact {
  padding: var(--space-lg) 0;
  background-color: var(--color-gray-light);
}

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

.contact-info {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

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

.contact-icon {
  font-size: 1.5rem;
  margin-right: var(--space-sm);
  color: var(--color-primary);
}

.contact-hours {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-gray-light);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin: 0;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.footer-column li {
  margin-bottom: 0.5rem;
}

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

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

.social-links a {
  display: flex;
  align-items: center;
}

.social-links a::before {
  content: "→";
  margin-right: 0.5rem;
  transition: transform var(--transition-fast);
}

.social-links a:hover::before {
  transform: translateX(3px);
}

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

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

.success-container {
  max-width: 600px;
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.slideIn {
  animation-name: slideIn;
}

.zoomIn {
  animation-name: zoomIn;
}

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

/* 3D Effects */
.card-3d-effect {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-3d-content {
  transition: transform var(--transition-normal);
  transform: translateZ(0);
}

.card-3d-effect:hover .card-3d-content {
  transform: translateZ(20px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .sustainability-content {
    flex-direction: column;
  }
  
  .eco-metrics {
    flex-direction: column;
  }
  
  .webinar-controls {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .methodology-grid, 
  .resources-grid, 
  .stats-grid, 
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}