/* Base Variables and Reset */
:root {
  /* Primary Colors */
  --primary-color: #2ecbaa;
  --primary-dark: #25a58a;
  --primary-light: #50dbbf;
  
  /* Secondary Colors */
  --secondary-color: #ff6b6b;
  --secondary-dark: #e25252;
  --secondary-light: #ff8a8a;
  
  /* Accent Colors */
  --accent-color: #5a65ff;
  --accent-dark: #4850cc;
  --accent-light: #7a84ff;
  
  /* Neutral Colors */
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-color: #f8f9fa;
  --bg-light: #ffffff;
  --bg-dark: #ebedf0;
  
  /* Shadows for Neumorphism */
  --shadow-light: 6px 6px 12px rgba(200, 200, 200, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.8);
  --shadow-dark: 6px 6px 12px rgba(163, 177, 198, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.7);
  --shadow-inset: inset 2px 2px 5px rgba(163, 177, 198, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.8);
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-light);
}

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

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

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

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

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

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

.btn-tertiary {
  background-color: var(--accent-color);
  color: var(--text-white);
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

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

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: var(--spacing-md);
}

.nav-list a {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.nav-list 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%;
  border-radius: 3px;
  background-color: var(--text-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
}

.hero::before {
  content: '';
  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: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

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

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

.card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.card-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

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

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-color);
}

.process-timeline {
  margin-bottom: var(--spacing-lg);
}

.process-item {
  display: flex;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-right: var(--spacing-md);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

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

.process-content h3 {
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

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

.behind-scenes-image {
  margin-top: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

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

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

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

.resource-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-sm);
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.resource-content {
  text-align: center;
}

.resource-content h3 {
  margin-bottom: var(--spacing-xs);
}

.resource-content h3 a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.resource-content h3 a:hover {
  color: var(--primary-color);
}

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

/* Instructors Section */
.instructors {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-color);
}

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

.instructor-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.instructor-socials {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-link {
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-dark);
}

/* Insights Section */
.insights {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.insight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.insight-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.insight-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.insight-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.insight-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.insight-content .btn {
  margin-top: auto;
}

.statistics-widget {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
}

.stat-desc {
  font-size: 1rem;
  color: var(--text-light);
}

/* Sustainability Section */
.sustainability {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-color);
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
}

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

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

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

.sustainability-text h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

.sustainability-text p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

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

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

.community-feature {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-sm);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.community-feature h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

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

.community-cta {
  text-align: center;
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.community-cta h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.community-cta p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider {
  margin-top: var(--spacing-lg);
}

.testimonials-slider h3 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.testimonial-slide {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
  color: var(--text-color);
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* News Section */
.news {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-color);
}

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

.news-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.news-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.news-date {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.news-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.news-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.news-link {
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.news-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.news-link:hover {
  color: var(--accent-dark);
}

.news-link:hover::after {
  transform: translateX(5px);
}

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

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

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

.info-item {
  margin-bottom: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
}

.info-item h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.info-item p {
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.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(46, 203, 170, 0.1);
}

.form-submit {
  text-align: right;
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  color: var(--text-white);
  padding-top: var(--spacing-lg);
}

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

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  color: #aaa;
}

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

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

.footer-links-column h3 {
  color: var(--text-white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  position: relative;
}

.footer-links-column h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.footer-links-column ul li a {
  color: #aaa;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links li a {
  display: flex;
  align-items: center;
  color: #aaa;
  transition: color 0.3s ease;
}

.social-links li a:hover {
  color: var(--primary-color);
}

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

.footer-bottom p {
  color: #aaa;
  margin-bottom: var(--spacing-xs);
}

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

.success-content {
  max-width: 600px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.success-content h1 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.success-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
}

.privacy-content h1, .terms-content h1 {
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
}

.privacy-content h2, .terms-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.privacy-content p, .terms-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

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

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

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-in {
  animation: slideIn 0.5s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .sustainability-content {
    flex-direction: column;
  }
  
  .insight-card {
    flex-direction: column;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .card-image, .insight-image, .news-image {
    height: 200px;
  }
  
  .sustainability-image {
    margin-bottom: var(--spacing-md);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.slider-controls{
  display: none;
}
.burger-menu{
  display: none;
}