:root {
  /* Core colors */
  --primary: #3e64ff;
  --primary-dark: #2a4cc7;
  --primary-light: #7b93ff;
  --secondary: #ff5e62;
  --secondary-dark: #d73a3d;
  --secondary-light: #ff8c8f;
  --accent: #00c2a8;
  --accent-dark: #009e89;
  --accent-light: #4dffe0;
  
  /* Neutral colors */
  --white: #ffffff;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #111111;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;
  
  /* 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 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 15px 35px rgba(0,0,0,0.1);
  
  /* Z-index levels */
  --z-normal: 1;
  --z-elevated: 10;
  --z-sticky: 100;
  --z-modal: 1000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--black);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

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

ul, ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

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

/* Container and Section Styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

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

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

/* Utilities */
.text-center {
  text-align: center;
}

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

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

.text-accent {
  color: var(--accent);
}

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

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

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

.bg-accent {
  background-color: var(--accent);
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark-gray);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

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

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

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

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--white);
}

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.navbar {
  padding: 1rem 0;
  transition: padding 0.4s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

.navbar-nav .nav-link {
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover:after {
  width: 60%;
}

/* Hero Section */
.hero-section {
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: var(--spacing-lg);
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

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

/* Features Section */
.features-section {
  background-color: var(--white);
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

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

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

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

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

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

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

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

.feature-list {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Image Gallery */
.gallery-container {
  margin-top: var(--spacing-xl);
}

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

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission Section */
.mission-section {
  position: relative;
  color: var(--white);
  padding: var(--spacing-xxl) 0;
}

.mission-section .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.mission-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62,100,255,0.85) 0%, rgba(0,194,168,0.85) 100%);
  z-index: -1;
}

.mission-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-content h2 {
  color: var(--white);
}

.mission-text {
  margin-bottom: var(--spacing-lg);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 1rem;
  margin-top: var(--spacing-xs);
}

/* Accolades Section */
.accolades-section {
  background: var(--light);
  padding: var(--spacing-xxl) 0;
}

.accolade-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.accolade-icon {
  margin-bottom: var(--spacing-md);
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-circle);
  overflow: hidden;
}

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

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

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

.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
}

.testimonial-content {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-md);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-circle);
  margin-right: var(--spacing-md);
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Resources Section */
.resources-section {
  padding: var(--spacing-xl) 0;
}

.resources-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.resource-card {
  background: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

.resource-link {
  display: inline-block;
  margin-top: var(--spacing-md);
  font-weight: 500;
  color: var(--accent);
  position: relative;
  padding-right: 20px;
}

.resource-link:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

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

.resource-link:hover:after {
  right: -5px;
}

/* Community Section */
.community-section {
  position: relative;
  color: var(--white);
  padding: var(--spacing-xxl) 0;
}

.community-section .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.community-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,94,98,0.85) 0%, rgba(255,140,143,0.85) 100%);
  z-index: -1;
}

.community-section .section-header h2,
.community-section .section-subtitle {
  color: var(--white);
}

.community-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  height: 100%;
}

.community-content h3 {
  color: var(--white);
}

.community-benefits h4 {
  color: var(--white);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.community-benefits ul {
  list-style-type: none;
  padding-left: 1.5rem;
}

.community-benefits li {
  position: relative;
  padding: var(--spacing-xs) 0;
}

.community-benefits li:before {
  content: '●';
  position: absolute;
  left: -1.5rem;
  color: var(--white);
}

.community-events {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.community-events h3 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.event-card {
  display: flex;
  margin-bottom: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.2);
  min-width: 80px;
}

.event-date .day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-details {
  flex: 1;
  padding: var(--spacing-md);
}

.event-details h4 {
  color: var(--white);
  margin-bottom: var(--spacing-xs);
}

.event-details p {
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.event-details .btn-outline-primary {
  color: var(--white);
  border-color: var(--white);
}

.event-details .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* Contact Section */
.contact-section {
  background: var(--light);
  padding: var(--spacing-xxl) 0;
}

.contact-info {
  margin-bottom: var(--spacing-lg);
}

.contact-info h3 {
  margin-bottom: var(--spacing-lg);
}

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

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--spacing-md);
}

.info-item h4 {
  margin-bottom: var(--spacing-xs);
}

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

.map-container {
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(62, 100, 255, 0.1);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.form-check-input {
  margin-right: var(--spacing-sm);
}

.form-check-label {
  margin-bottom: 0;
}

/* Footer Section */
.footer-section {
  background: var(--dark-gray);
  color: var(--light-gray);
  padding-top: var(--spacing-xl);
}

.footer-info {
  margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  color: var(--light-gray);
  transition: color 0.3s ease;
}

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

.footer-links {
  margin-bottom: var(--spacing-lg);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  list-style-type: none;
  padding-left: 0;
}

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

.footer-links a {
  color: var(--light-gray);
  transition: color 0.3s ease;
}

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

.footer-newsletter {
  margin-bottom: var(--spacing-lg);
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-newsletter form {
  display: flex;
  margin-top: var(--spacing-md);
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-top-left-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
}

.footer-newsletter button {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  border-top-right-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

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

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

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

.success-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
}

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

.page-content h1 {
  margin-bottom: var(--spacing-lg);
}

.page-content h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: var(--spacing-md);
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
  
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border-radius: var(--border-radius-md);
  }
  
  .footer-newsletter button {
    margin-top: var(--spacing-sm);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-header {
    margin-bottom: var(--spacing-lg);
  }
  
  .testimonial-carousel {
    flex-direction: column;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: var(--spacing-sm);
    flex-direction: row;
    gap: var(--spacing-sm);
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .info-item i {
    margin-bottom: var(--spacing-sm);
  }
}