:root {
  /* Primary colors */
  --primary-color: #6c3fb5;
  --primary-dark: #542f8c;
  --primary-light: #8a5fcf;
  
  /* Secondary colors */
  --secondary-color: #f27059;
  --secondary-dark: #d85a44;
  --secondary-light: #ff8b76;
  
  /* Accent colors */
  --accent-color: #3abfd9;
  --accent-dark: #2699b0;
  --accent-light: #60d5eb;
  
  /* Neutral colors */
  --dark: #222233;
  --medium-dark: #444455;
  --medium: #666677;
  --medium-light: #9999aa;
  --light: #e6e6f0;
  --white: #ffffff;
  
  /* Gradient colors */
  --gradient-start: #6c3fb5;
  --gradient-mid: #8a5fcf;
  --gradient-end: #3abfd9;
  
  /* Text shadows */
  --text-shadow-light: 1px 1px 3px rgba(0, 0, 0, 0.2);
  --text-shadow-dark: 2px 2px 4px rgba(0, 0, 0, 0.4);
  
  /* Box shadows */
  --box-shadow-light: 0 3px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
  --box-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.25);
  
  /* Animation speeds */
  --transition-fast: 0.2s;
  --transition-medium: 0.4s;
  --transition-slow: 0.6s;
  
  /* Font settings */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 1rem auto;
  border-radius: var(--border-radius-sm);
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 1.2rem;
  color: var(--medium);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Gradient Backgrounds */
.gradient-bg {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  position: relative;
  z-index: 1;
}

.gradient-bg-alt {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  position: relative;
  z-index: 1;
}

/* Retro Elements */
.retro-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--text-shadow-dark);
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-md);
}

.btn-retro {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.5rem;
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--box-shadow-medium);
}

.btn-retro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.btn-retro:hover::before {
  transform: translateX(100%);
}

.retro-input {
  border: 2px solid var(--medium-light);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast) ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.retro-input:focus {
  border-color: var(--primary-color);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(108, 63, 181, 0.2);
  outline: none;
}

/* Hyperrealistic textures */
.texture-bg {
  position: relative;
}

.texture-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/texture-overlay.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

/* Button Styles */
.btn {
  position: relative;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium) cubic-bezier(0.68, -0.55, 0.27, 1.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--box-shadow-light);
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--box-shadow-light);
}

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

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

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

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

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

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

/* Card Styles */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

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

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

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

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-medium) ease;
}

.navbar-dark {
  background-color: transparent;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white) !important;
  text-shadow: var(--text-shadow-light);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all var(--transition-fast) ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-scrolled {
  background-color: var(--dark);
  box-shadow: var(--box-shadow-medium);
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: var(--text-shadow-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: var(--text-shadow-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Progress Bars */
.progress-container {
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.progress {
  height: 10px;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  border-radius: var(--border-radius-lg);
  transition: width 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-shadow: var(--text-shadow-light);
}

/* Methodology Section */
.methodology-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin-bottom: var(--spacing-md);
}

.methodology-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-medium) ease;
}

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

.methodology-content {
  padding: var(--spacing-md);
}

.timeline {
  position: relative;
  margin-top: var(--spacing-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: var(--spacing-md);
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 7px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--box-shadow-light);
}

.timeline-content {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  box-shadow: var(--box-shadow-light);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* Community Section */
.community-card {
  height: 100%;
}

.community-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 200px;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--white), var(--light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Resources Section */
.resource-card {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow-medium);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  height: 100%;
}

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

.resource-icon {
  flex: 0 0 100px;
  margin-right: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
}

.resource-content {
  flex: 1;
}

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

.resource-links li {
  margin-bottom: 0.5rem;
}

.resource-links a {
  display: inline-block;
  color: var(--primary-color);
  transition: all var(--transition-fast) ease;
  position: relative;
  padding-left: 20px;
}

.resource-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  transition: transform var(--transition-fast) ease;
}

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

.resource-links a:hover::before {
  transform: translate(5px, -50%);
}

/* Events Calendar */
.events-timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}

.event-item {
  display: flex;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.event-date {
  flex: 0 0 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  text-align: center;
  color: var(--white);
  margin-right: var(--spacing-md);
  box-shadow: var(--box-shadow-medium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.event-date .day {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.25rem 0;
}

.event-date .year {
  font-size: 0.9rem;
}

.event-content {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow-medium);
}

.event-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.event-location {
  font-weight: 500;
  color: var(--medium);
  margin-bottom: var(--spacing-sm);
}

/* Careers Section */
.careers-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  margin-bottom: var(--spacing-md);
}

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

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

.careers-content {
  padding: var(--spacing-md);
}

.position-card {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

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

.position-card h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.position-card p {
  margin-bottom: 1rem;
}

/* Workshops Section */
.workshop-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  margin-bottom: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.workshop-image {
  width: 100%;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.workshop-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

.workshop-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.workshop-details span {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 0.3rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Section */
.contact-info {
  height: 100%;
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--box-shadow-medium);
  margin-bottom: var(--spacing-md);
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--border-radius-sm);
}

.contact-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

.contact-form-container h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-form-container h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--border-radius-sm);
}

.form-label {
  font-weight: 600;
  color: var(--medium-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer-section {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

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

.footer-about h3,
.footer-links h3,
.footer-social h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--white);
  border-radius: var(--border-radius-sm);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light);
  transition: color var(--transition-fast) ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  transition: transform var(--transition-fast) ease;
}

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

.footer-links a:hover::before {
  transform: translate(5px, -50%);
}

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

.social-links li {
  margin-bottom: 0.75rem;
}

.social-links a {
  color: var(--light);
  transition: color var(--transition-fast) ease;
  font-weight: 500;
  display: inline-block;
}

.social-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.newsletter-form .input-group {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1rem;
}

.newsletter-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.success-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--box-shadow-heavy);
}

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

.success-title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-message {
  margin-bottom: var(--spacing-lg);
}

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

.content-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow-medium);
}

.content-title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 0.5rem;
}

.content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--border-radius-sm);
}

/* Animation Classes */
.animate-on-scroll {
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Media Queries */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
    flex-direction: row;
    justify-content: space-around;
    padding: 0.5rem;
    flex: 0 0 auto;
    width: 100%;
  }
  
  .event-date .month,
  .event-date .day,
  .event-date .year {
    margin: 0;
  }
  
  .resource-card {
    flex-direction: column;
    text-align: center;
  }
  
  .resource-icon {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .timeline::before {
    left: 5px;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
    top: 8px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
  
  .workshop-card,
  .community-card {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: var(--spacing-md) 0;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Cookie Consent Styles */
#cookieConsent {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white);
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}

#cookieConsent p {
  margin-bottom: 0;
}

#cookieConsent button,
#cookieConsent a {
  margin-top: 10px;
}