:root {
  /* Primary colors - Brutalism style with split complementary */
  --primary: #FF3366; /* Vibrant pink/red */
  --primary-dark: #CC2952;
  --primary-light: #FF6B8D;
  
  --secondary: #33CCFF; /* Bright cyan */
  --secondary-dark: #1EADDB;
  --secondary-light: #75DAFF;
  
  --tertiary: #66FF33; /* Lime green */
  --tertiary-dark: #52CC29;
  --tertiary-light: #99FF75;
  
  /* Neutral colors */
  --dark: #1A1A1A;
  --dark-medium: #333333;
  --medium: #666666;
  --light-medium: #999999;
  --light: #F2F2F2;
  --white: #FFFFFF;
  
  /* Text colors */
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #FFFFFF;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Brutalism-specific */
  --brutalism-border: 3px solid var(--dark);
  --brutalism-shadow: 5px 5px 0 var(--dark);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Typography Enhancements */
.title {
  letter-spacing: -0.02em;
}

.subtitle {
  letter-spacing: -0.01em;
}

.section-title {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
}

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

/* Brutalism Style Elements */
.brutalism-card {
  background: var(--white);
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  transition: transform var(--transition-medium);
}

.brutalism-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--dark);
}

.brutalism-button {
  background: var(--primary);
  color: var(--white);
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brutalism-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--dark);
}

/* Button Styles */
.button {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

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

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

.button.is-outlined.is-white {
  border-width: 2px;
}

.button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Micro-animations for buttons */
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.7s ease;
}

.button:hover::before {
  left: 100%;
}

/* 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(8px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-item {
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

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

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
  left: calc(50% - 10px);
  background-color: var(--text-medium);
}

.logo img {
  max-height: 50px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.7);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-body {
  padding-top: 12rem;
  padding-bottom: 8rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

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

.feature-card .card-image {
  margin-bottom: var(--space-lg);
  width: 100%;
  text-align: center;
}

.feature-card .image-container {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

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

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

.feature-card h3 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

/* Events Section */
.events-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/texture-pattern-light.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

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

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

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

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

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

.event-card:hover img {
  transform: scale(1.08);
}

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

.event-card h3 {
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.event-card p {
  margin-bottom: var(--space-lg);
}

.event-card .button {
  align-self: center;
}

/* Methodology Section */
.methodology-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.methodology-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methodology-image {
  margin-bottom: var(--space-lg);
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.methodology-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.methodology-image:hover img {
  transform: scale(1.03);
}

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

.methodology-text p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Statistics Section */
.statistics-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-light);
}

.statistics-section .section-title {
  color: var(--white);
}

.statistics-section .section-title::after {
  background: var(--white);
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.stat-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.stat-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.instructor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

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

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

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

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

.instructor-card .card-content {
  padding: var(--space-lg);
  text-align: center;
  background-color: var(--white);
}

.instructor-card h3 {
  margin-bottom: var(--space-xs);
}

.instructor-card h4 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* Partners Section */
.partners-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-logo {
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-medium);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

.partner-description {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.resource-card {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  height: 100%;
  box-shadow: var(--shadow-md);
}

.resource-card h3 {
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.resource-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-links li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.resource-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.resource-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.resource-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

.vision-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vision-image {
  margin-bottom: var(--space-lg);
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.vision-text p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* History Section */
.history-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
}

.history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/texture-subtle-dots.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 3px;
  height: 100%;
  background: var(--primary);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  z-index: 2;
  padding-left: 100px;
}

.timeline-marker {
  position: absolute;
  left: 40px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.timeline-marker.is-primary {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(255, 51, 102, 0.2);
}

.timeline-content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

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

/* Careers Section */
.careers-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.careers-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

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

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

.careers-content h3 {
  margin-bottom: var(--space-md);
}

.careers-content p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.7;
}

.career-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.career-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.career-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

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

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

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

.contact-item h3 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.contact-item p {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.contact-form .label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--light-medium);
  transition: border-color var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
}

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

.footer-logo img {
  margin-bottom: var(--space-md);
  max-width: 150px;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

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

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

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

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

/* Modal Gallery */
.modal-image {
  text-align: center;
}

.modal-image img {
  max-height: 80vh;
  max-width: 90%;
}

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

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

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

.success-title {
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.success-message {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

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

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

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

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

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-title {
    font-size: 1.2rem;
  }
  
  .methodology-image,
  .vision-image,
  .careers-image {
    height: 300px;
  }
  
  .methodology-image img,
  .vision-image img,
  .careers-image img {
    height: 100%;
    object-fit: cover;
  }
  
  .contact-form-container {
    margin-top: var(--space-lg);
  }
}

@media screen and (max-width: 480px) {
  .hero-buttons .button {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .feature-card .image-container,
  .event-card .image-container,
  .instructor-card .image-container {
    height: 200px;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Add animations to sections when they come into view */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* About Page Styles */
.about-hero {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.about-hero-content {
  text-align: center;
}

.about-hero-image {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.about-hero-image:hover img {
  transform: scale(1.02);
}

/* Our Story Section */
.our-story-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

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

.story-paragraph {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

/* Mission & Values Section */
.mission-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.mission-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

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

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

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

.mission-text h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  position: relative;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tertiary);
  font-weight: bold;
  font-size: 1.3rem;
}

.values-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.values-list p {
  margin: 0;
  color: var(--text-medium);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.team-info {
  padding: var(--space-lg);
  flex-grow: 1;
}

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

.team-info .subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-bio {
  line-height: 1.7;
  color: var(--text-medium);
}

/* Achievements Section */
.achievements-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

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

.achievement-card {
  background: var(--light);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

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

.achievement-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.achievement-content .title {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.achievement-content p {
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-content {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--light);
}

.author-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

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

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

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
}

.author-title {
  color: var(--text-medium);
  font-size: 0.9rem;
}

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

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

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

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

/* FAQ Section */
.faq-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-medium);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-answer p {
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.cta-content {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-content .title {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .button {
  min-width: 200px;
}

/* Responsive Adjustments for About Page */
@media screen and (max-width: 768px) {
  .mission-image {
    min-height: 300px;
    margin-bottom: var(--space-lg);
  }

  .team-image {
    height: 250px;
  }

  .achievement-card {
    flex-direction: column;
    text-align: center;
  }

  .achievement-icon {
    margin: 0 auto;
  }

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

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .button {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .about-hero-image,
  .team-image {
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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