/* CSS Variables */
:root {
  /* Triadic Color Scheme */
  --primary-color: #4C6EF5; /* Main blue */
  --primary-dark: #3754c2;
  --primary-light: #7a92f8;
  
  --secondary-color: #F54C6E; /* Complementary pink */
  --secondary-dark: #d13558;
  --secondary-light: #ff7a92;
  
  --tertiary-color: #6EF54C; /* Complementary green */
  --tertiary-dark: #4bc235;
  --tertiary-light: #8dff73;

  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --gray: #CED4DA;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--off-white);
  line-height: 1.6;
  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(--black);
}

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

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

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

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

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

/* Section titles */
.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

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

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

/* Buttons */
.button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button.is-outlined.is-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button.is-outlined.is-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.button.is-rounded {
  border-radius: 50px;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 110, 245, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 110, 245, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 110, 245, 0);
  }
}

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

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

.logo-text {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0;
}

.navbar-menu {
  display: flex;
  justify-content: flex-end;
}

.navbar-item {
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-burger {
  display: none;
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
    cursor: pointer;
    position: relative;
    width: 3.25rem;
    height: 3.25rem;
    border: none;
    background: none;
    padding: 0;
  }
  
  .navbar-burger span {
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    width: 16px;
    height: 2px;
    background-color: var(--dark-gray);
    border-radius: 4px;
    transform-origin: center;
    transition: all 0.3s ease-out;
  }
  
  .navbar-burger span:nth-child(1) {
    top: calc(50% - 6px);
  }
  
  .navbar-burger span:nth-child(2) {
    top: calc(50%);
  }
  
  .navbar-burger span:nth-child(3) {
    top: calc(50% + 6px);
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-end {
    display: flex;
    flex-direction: column;
  }

  .navbar-item {
    padding: 0.75rem 1.5rem;
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

.feature-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

/* Awards Section */
.awards-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(76, 110, 245, 0.05) 0%, transparent 80%),
                    radial-gradient(circle at 90% 80%, rgba(245, 76, 110, 0.05) 0%, transparent 80%);
  z-index: 0;
}

.awards-slider {
  position: relative;
  z-index: 1;
}

.award-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-normal);
}

.award-card:hover .award-icon img {
  transform: scale(1.1);
}

.award-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.award-description {
  color: var(--dark-gray);
  flex-grow: 1;
}

/* Workshops Section */
.workshops-section {
  background-color: var(--white);
}

.workshop-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

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

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

.workshop-card .card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.workshop-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.workshop-description {
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.workshop-address, .workshop-hours {
  margin-bottom: var(--space-sm);
}

/* Resources Section */
.resources-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  width: 100%;
  height: 200px;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.resource-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.resource-description {
  color: var(--dark-gray);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.2;
  z-index: 0;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  height: 100%;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.25rem;
  text-align: center;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
  text-align: center;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.testimonial-text {
  color: var(--dark-gray);
  font-style: italic;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--off-white);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(76, 110, 245, 0.05) 0%, rgba(255,255,255,0) 100%);
  z-index: 0;
}

.contact-info {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  z-index: 1;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.contact-text h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  height: 100%;
}

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

.contact-form .label {
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.contact-form .input, 
.contact-form .textarea, 
.contact-form .select select {
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: border-color var(--transition-normal);
}

.contact-form .input:focus, 
.contact-form .textarea:focus, 
.contact-form .select select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 110, 245, 0.2);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

.footer-links a, .footer-social a {
  color: var(--light-gray);
  transition: color var(--transition-normal);
  display: inline-block;
}

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

.footer-social a {
  position: relative;
  padding-left: 30px;
}

.footer-social a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-social a[href*="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234C6EF5'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.footer-social a[href*="twitter"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234C6EF5'%3E%3Cpath d='M22.46 6c-.77.35-1.6.58-2.46.69c.88-.53 1.56-1.37 1.88-2.38c-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29c0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15c0 1.49.75 2.81 1.91 3.56c-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07a4.28 4.28 0 0 0 4 2.98a8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21C16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56c.84-.6 1.56-1.36 2.14-2.23z'/%3E%3C/svg%3E");
}

.footer-social a[href*="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234C6EF5'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

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

/* Animation Utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--black);
}

.success-message {
  max-width: 600px;
  margin-bottom: var(--space-lg);
  color: var(--dark-gray);
}

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

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

.privacy-title, .terms-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.privacy-section, .terms-section {
  margin-bottom: var(--space-xl);
}

.privacy-section h3, .terms-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero .buttons {
    flex-direction: column;
  }

  .contact-form-container,
  .contact-info {
    margin-bottom: var(--space-lg);
  }
}

/* About Page */
.about-page {
  padding-top: 100px;
}

.about-hero {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.about-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-section {
  margin-bottom: var(--space-xl);
}

.about-section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.team-member {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.team-member-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.team-member:hover .team-member-photo img {
  transform: scale(1.05);
}

.team-member-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-member-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.team-member-role {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
}

.team-member-bio {
  color: var(--dark-gray);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.mission-vision {
  background-color: var(--off-white);
  padding: var(--space-xl) 0;
}

.history-timeline {
  position: relative;
}

.timeline-item {
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

.py-1 {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-2 {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-3 {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-4 {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.px-1 {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.px-2 {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-3 {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.px-4 {
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.is-hidden {
  display: none !important;
}

.is-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}