/* Global Variables */
:root {
  /* Triadic color scheme */
  --primary-color: #007bff;
  --primary-light: #4da3ff;
  --primary-dark: #0056b3;
  
  --secondary-color: #ff7b00;
  --secondary-light: #ffa04d;
  --secondary-dark: #b35600;
  
  --tertiary-color: #7b00ff;
  --tertiary-light: #a34dff;
  --tertiary-dark: #5600b3;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #cccccc;
  --dark-gray: #333333;
  --black: #000000;
  
  /* Text colors */
  --text-primary: #212121;
  --text-secondary: #555555;
  --text-light: #f8f9fa;
  
  /* Shadow values for neomorphism */
  --shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.2);
  --shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.7);
  
  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-gray);
  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-md);
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
  position: relative;
  text-align: center;
  margin-bottom: var(--space-lg);
}

h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

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

ul {
  list-style: none;
}

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

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

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

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

.text-left {
  text-align: left;
}

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

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

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.p-sm {
  padding: var(--space-sm);
}

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

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

/* Button Styles */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--font-size-base);
  text-align: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.1),
    -6px -6px 12px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.15),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.7);
}

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

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

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

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

/* Neomorphic Card Styles */
.card {
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  box-shadow: 
    8px 8px 16px rgba(174, 174, 192, 0.2),
    -8px -8px 16px rgba(255, 255, 255, 0.7);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    12px 12px 20px rgba(174, 174, 192, 0.3),
    -12px -12px 20px rgba(255, 255, 255, 0.8);
}

.card-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-md);
  text-align: center;
}

.card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
  margin: 0 auto;
}

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

.card-content {
  text-align: center;
  width: 100%;
}

/* Heading Styles with Neo-brutalism influence */
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
  letter-spacing: -0.5px;
}

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

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

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

.logo h1 {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
}

.nav-menu ul {
  display: flex;
  gap: var(--space-md);
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.5rem;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

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

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

/* Hero Section */
.hero {
  position: relative;
  padding: calc(var(--space-xl) * 2) 0;
  margin-top: 70px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Vision Section */
.vision {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.vision-text {
  order: 1;
}

.vision-image {
  order: 2;
  text-align: center;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.vision-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.progress-container {
  margin-top: var(--space-md);
}

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

.progress-item p {
  width: 30%;
  margin-bottom: 0;
  font-weight: 600;
}

.progress-bar {
  flex-grow: 1;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress {
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  border-radius: 5px;
  transition: width var(--transition-slow);
}

/* Team Section */
.team {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

/* Research Section */
.research {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.research-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.research-text {
  order: 2;
}

.research-gallery {
  order: 1;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-container img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.gallery-container img:nth-child(3) {
  grid-column: span 2;
}

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

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

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

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

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

.resource-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.resource-card ul {
  margin-top: var(--space-sm);
}

.resource-card ul li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: var(--space-sm);
}

.resource-card ul li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Pricing Section */
.pricing {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.pricing .card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.pricing ul {
  margin-bottom: var(--space-md);
  text-align: left;
  width: 100%;
}

.pricing ul li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: var(--space-md);
}

.pricing ul li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Instructors Section */
.instructors {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

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

.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.sustainability-image {
  text-align: center;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

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

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

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

.stat-item {
  flex: 1 1 30%;
  min-width: 150px;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-light);
  background-color: var(--light-gray);
  transition: transform var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.stat-item h3 {
  font-size: var(--font-size-2xl);
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  margin-bottom: 0;
}

/* News Section */
.news {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

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

.news .card-content {
  text-align: left;
}

.news .date {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 3px;
  position: relative;
  overflow: hidden;
}

.read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

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

/* Customer Stories Section */
.customer-stories {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.stories-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.story-card {
  width: 100%;
  max-width: 350px;
  padding: var(--space-md);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.story-card .card-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card .location {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.rating {
  color: var(--secondary-color);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

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

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

.press-item {
  text-align: center;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.press-item img {
  max-width: 150px;
  margin-bottom: var(--space-sm);
  object-fit: contain;
  height: 70px;
}

.press-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.press-item p {
  font-style: italic;
  color: var(--text-secondary);
}

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

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

.contact-info, .contact-form {
  padding: var(--space-md);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

.detail-item {
  margin-bottom: var(--space-md);
}

.detail-item h4 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  transition: box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--primary-light);
}

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

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

.footer-logo h3 {
  color: var(--white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

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

.footer-column h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

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

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links a {
  color: var(--light-gray);
  font-size: var(--font-size-base);
  transition: color var(--transition-fast);
}

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

.copyright {
  font-size: var(--font-size-sm);
  color: var(--medium-gray);
  margin: 0;
}

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

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

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

.success-content .btn {
  margin-top: var(--space-md);
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-2xl: 1.75rem;
    --space-xl: 4rem;
  }
  
  .vision-content,
  .research-content,
  .sustainability-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .vision-image,
  .vision-text,
  .research-gallery,
  .research-text {
    order: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --space-xl: 3rem;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-menu ul {
    flex-direction: column;
    padding: var(--space-md);
  }
  
  .nav-menu ul li {
    margin-bottom: var(--space-sm);
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .stories-slider,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .story-card {
    max-width: 100%;
  }
  
  .social-links {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
  }
  
  .sustainability-stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .press-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-container img:nth-child(3) {
    grid-column: span 1;
  }
}

/* Animation for Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Read More Animation */
@keyframes readMorePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.read-more:hover {
  animation: readMorePulse 1.5s infinite;
}

/* Additional Neo-brutalism Elements */
.neo-brutalism {
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all var(--transition-medium);
}

.neo-brutalism:hover {
  transform: translate(-5px, -5px);
  box-shadow: 13px 13px 0 var(--black);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
.burger-menu{
  display: none;
}