/* Variables */
:root {
  /* Tetrad color scheme */
  --primary-color: #3a7bd5;
  --secondary-color: #d53a7b;
  --accent-color-1: #7bd53a;
  --accent-color-2: #d5aa3a;
  
  /* Darker variants for hover states */
  --primary-dark: #2a5d9e;
  --secondary-dark: #b2306a;
  --accent-dark-1: #62ac30;
  --accent-dark-2: #b38f2f;
  
  /* Neutral colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #222222;
  --gray-light: #e0e0e0;
  --gray-medium: #999999;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  
  /* 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: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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);
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

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

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

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

section {
  padding: var(--space-xl) 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--background-light);
}

section:nth-child(odd) {
  background-color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

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

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

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

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

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

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

.checkbox-group input {
  width: auto;
  margin-right: var(--space-xs);
}

.checkbox-group label {
  margin-bottom: 0;
}

button[type="submit"] {
  cursor: pointer;
}

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

.header.scrolled {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.logo a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

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

.main-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(--text-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: var(--space-md);
}

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

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Vision Section */
.vision {
  background-color: #ffffff;
}

.vision-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.vision-text, .vision-image {
  flex: 1;
}

.vision-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.progress-indicators {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.progress-item {
  flex: 1;
  text-align: center;
}

.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
}

.progress-circle svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: var(--gray-light);
  stroke-width: 8;
}

.progress-circle-fill {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 8;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 2s ease;
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Errores Section */
.errores {
  background-color: var(--background-light);
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

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

.timeline-content {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  margin-left: 50%;
  width: 45%;
}

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

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -60px;
}

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

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

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

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: var(--space-md);
  flex-grow: 1;
}

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

.card-content h4 {
  color: var(--primary-color);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
}

/* Customer Stories Section */
.customer-stories {
  background-color: #ffffff;
}

.stories-slider {
  position: relative;
  overflow: hidden;
  padding: 0 var(--space-sm);
}

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

.testimonial {
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  padding-left: var(--space-md);
}

.testimonial::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-md);
}

.prev-slide, .next-slide {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.slider-dots {
  display: flex;
  gap: var(--space-xs);
  margin: 0 var(--space-md);
}

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

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

/* Resources Section */
.recursos {
  background-color: var(--background-light);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

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

.recurso-card {
  display: flex;
  flex-direction: column;
}

/* Research Section */
.research {
  background-color: #ffffff;
}

.research-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.research-text, .research-image {
  flex: 1;
}

.research-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.research-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: var(--space-lg);
}

.stat-item {
  flex: 1;
  max-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

/* Team Section */
.team {
  background-color: var(--background-light);
}

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

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

.position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

/* FAQ Section */
.faq {
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-light);
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: var(--space-md);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--background-light);
}

.scenes-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.scenes-text, .scenes-gallery {
  flex: 1;
}

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

.gallery-container img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

/* Sustainability Section */
.sustainability {
  background-color: #ffffff;
}

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

.sustainability-text, .sustainability-image {
  flex: 1;
}

.sustainability-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

.credential-item {
  text-align: center;
  flex: 1;
}

.credential-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
  display: block;
}

/* Community Section */
.community {
  background-color: var(--background-light);
}

.community-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.community-text, .community-image {
  flex: 1;
}

.community-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

.community-events h3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.event-item {
  display: flex;
  gap: var(--space-md);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.event-date {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.event-info {
  flex-grow: 1;
}

.event-info h4 {
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

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

/* Careers Section */
.careers {
  background-color: #ffffff;
}

.careers-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.careers-text, .careers-image {
  flex: 1;
}

.careers-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

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

.benefit-item {
  flex: 0 0 calc(25% - var(--space-md));
  text-align: center;
  padding: var(--space-md);
  background-color: var(--background-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

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

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

/* Contact Section */
.contact {
  background-color: var(--background-light);
}

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

.contact-info, .contact-form {
  flex: 1;
}

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

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

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

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

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

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

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

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h3 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

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

.footer-links-column {
  flex: 1;
}

.footer-links-column h4 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

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

.social-links a {
  display: inline-block;
  margin-right: var(--space-sm);
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

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

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

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

.success-container {
  max-width: 600px;
}

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

/* Static Pages (Privacy, Terms) */
.static-page {
  padding-top: 100px;
  min-height: 100vh;
}

.static-page .container {
  max-width: 800px;
}

.static-page h1 {
  margin-bottom: var(--space-lg);
}

.static-page h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.static-page p, .static-page ul {
  margin-bottom: var(--space-md);
}

.static-page ul {
  list-style: disc;
  padding-left: var(--space-lg);
}

/* Particle Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .vision-content, 
  .research-content, 
  .scenes-content, 
  .sustainability-content, 
  .community-content, 
  .careers-content, 
  .contact-content {
    flex-direction: column;
  }
  
  .vision-image, 
  .research-image, 
  .sustainability-image, 
  .community-image, 
  .careers-image {
    order: -1;
    margin-bottom: var(--space-md);
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .progress-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    right: auto;
  }
  
  .benefit-item {
    flex: 0 0 calc(50% - var(--space-md));
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    padding: var(--space-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .footer-content, .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .benefit-item {
    flex: 0 0 100%;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .eco-credentials {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content {
    padding: 0 var(--space-sm);
  }
  
  .timeline-content {
    padding: var(--space-sm);
  }
  
  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .event-date {
    margin-bottom: var(--space-sm);
  }
}

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

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

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

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

/* Cookie Consent Styles */
#cookieConsent {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#acceptCookies {
  background-color: var(--accent-color-1);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--accent-dark-1);
}