/* Variables */
:root {
  /* Monochromatic Color Scheme */
  --primary-color: #3a1c71;
  --primary-light: #5932a1;
  --primary-dark: #2a0e5c;
  --secondary-color: #6a47c8;
  --secondary-light: #8e6fe0;
  --secondary-dark: #4c2db0;
  --accent-color: #aa8ff3;
  --accent-light: #c5b3f7;
  --accent-dark: #8967eb;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f7;
  --neutral-300: #e6e6e9;
  --neutral-400: #c0c0c7;
  --neutral-500: #9c9ca5;
  --neutral-600: #6e6e79;
  --neutral-700: #444450;
  --neutral-800: #2d2d34;
  --neutral-900: #1a1a1e;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  --gradient-light: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-neo: 6px 6px 0 var(--primary-dark);
  
  /* Typography */
  --font-family-heading: 'Oswald', sans-serif;
  --font-family-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-neo: 0;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-family-body);
  color: var(--neutral-700);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral-200);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

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

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

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

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

/* Section Styles */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto var(--spacing-md);
}

.section-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  color: var(--neutral-600);
}

/* Button Styles */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-neo);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  box-shadow: var(--shadow-neo);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--primary-dark);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0 var(--primary-dark);
}

.btn-primary, 
button.btn-primary, 
input[type='submit'].btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-dark);
}

.btn-primary:hover, 
button.btn-primary:hover, 
input[type='submit'].btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline-light, 
button.btn-outline-light, 
input[type='submit'].btn-outline-light {
  background-color: transparent;
  color: white;
  border-color: white;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover, 
button.btn-outline-light:hover, 
input[type='submit'].btn-outline-light:hover {
  background-color: white;
  color: var(--primary-dark);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}

.btn-lg, 
button.btn-lg, 
input[type='submit'].btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-5 {
  margin-bottom: var(--spacing-lg);
}

.mt-3 {
  margin-top: var(--spacing-sm);
}

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

/* Header & Navigation */
.header {
  background-color: var(--neutral-100);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-family-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-brand span {
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  font-family: var(--font-family-heading);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--neutral-700);
  padding: 0.5rem 1rem;
  transition: color var(--transition-normal);
}

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

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

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(58, 28, 113, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 9rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(58, 28, 113, 0.8), rgba(106, 71, 200, 0.7));
  z-index: 1;
}

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

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

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

/* About Section */
.about-section {
  background-color: var(--neutral-100);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.stat-item {
  text-align: center;
  flex: 1;
  padding: var(--spacing-sm);
  background-color: var(--neutral-200);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  color: var(--neutral-600);
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Methodology Section */
.methodology-section {
  background-color: var(--neutral-200);
}

.methodology-card {
  height: 100%;
  border: none;
  border-radius: var(--radius-neo);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
}

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

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

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

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

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

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

/* Case Studies Section */
.case-studies-section {
  background-color: var(--neutral-100);
}

.case-study-card {
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-neo);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
  background-color: var(--neutral-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.case-study-card .card-image {
  width: 100%;
  height: 300px;
}

.case-study-card .card-content {
  padding: var(--spacing-md);
}

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

/* Resources Section */
.resources-section {
  background-color: var(--neutral-200);
}

.resources-container {
  background-color: var(--neutral-100);
  padding: var(--spacing-md);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

.resource-item {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--neutral-300);
  transition: background-color var(--transition-normal);
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item:hover {
  background-color: var(--neutral-200);
}

.resource-item h3 {
  margin-bottom: var(--spacing-xs);
}

.resource-item p {
  margin: 0;
  color: var(--neutral-600);
}

/* Events Section */
.events-section {
  background-color: var(--neutral-100);
}

.event-card {
  height: 100%;
  border: none;
  border-radius: var(--radius-neo);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-200);
}

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

.event-card .card-image {
  width: 100%;
  height: 250px;
  position: relative;
}

.event-date {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem;
  text-align: center;
  min-width: 60px;
  border-radius: var(--radius-neo);
  box-shadow: 3px 3px 0 var(--primary-dark);
  z-index: 2;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
}

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

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

.location-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%233a1c71' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.5rem;
}

/* Instructors Section */
.instructors-section {
  background-color: var(--neutral-200);
}

.instructor-card {
  height: 100%;
  border: none;
  border-radius: var(--radius-neo);
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
}

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

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

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

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

.instructor-card .card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex: 1;
}

.instructor-card h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Media Section */
.media-section {
  background-color: var(--neutral-100);
}

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

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

.media-highlights {
  margin-top: var(--spacing-md);
}

.media-item {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: var(--neutral-200);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
  transition: transform var(--transition-normal);
}

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

.media-item h4 {
  color: var(--secondary-color);
  margin-bottom: var(--spacing-xs);
}

.media-video {
  position: relative;
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
  overflow: hidden;
  cursor: pointer;
}

.media-video img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

/* Accolades Section */
.accolades-section {
  background-color: var(--neutral-200);
}

.accolades-container {
  background-color: var(--neutral-100);
  padding: var(--spacing-md);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

.accolade-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--neutral-300);
}

.accolade-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.accolade-icon {
  flex-shrink: 0;
  margin-right: var(--spacing-md);
}

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

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

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

.contact-info {
  padding-right: var(--spacing-md);
}

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

.contact-details {
  margin-top: var(--spacing-md);
}

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

.contact-item i {
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.location-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%233a1c71' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E");
}

.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%233a1c71' d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}

.email-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%233a1c71' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E");
}

.contact-form {
  background-color: var(--neutral-200);
  padding: var(--spacing-md);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--neutral-700);
  background-color: var(--neutral-100);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-neo);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(58, 28, 113, 0.25);
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-700);
}

textarea.form-control {
  resize: vertical;
}

/* Press Section */
.press-section {
  background-color: var(--neutral-200);
}

.press-container {
  background-color: var(--neutral-100);
  padding: var(--spacing-md);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

.press-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--neutral-300);
}

.press-logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.press-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.press-quotes {
  padding-top: var(--spacing-sm);
}

.press-quote {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: var(--neutral-200);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
  position: relative;
}

.press-quote:last-child {
  margin-bottom: 0;
}

.press-quote p {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: var(--spacing-xs);
}

.press-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-brand h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: var(--spacing-xs);
}

.footer-brand span {
  color: var(--accent-color);
}

.footer-brand p {
  color: var(--neutral-400);
}

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

.social-links a {
  color: var(--neutral-300);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: var(--radius-neo);
  transition: all var(--transition-normal);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer h4 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.footer h4:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  margin-top: 0.5rem;
}

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

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

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.newsletter-form {
  margin-top: var(--spacing-sm);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: var(--neutral-400);
}

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

.footer-bottom p {
  color: var(--neutral-500);
  margin: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--neutral-900);
  color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

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

.success-container {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--neutral-100);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

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

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  background-color: var(--neutral-200);
}

.privacy-content, .terms-content {
  background-color: var(--neutral-100);
  padding: var(--spacing-lg);
  border-radius: var(--radius-neo);
  box-shadow: var(--shadow-neo);
}

/* Animations with AOS */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

/* Media Queries */
@media (max-width: 991.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-section h1 {
    font-size: 3.25rem;
  }
  
  .hero-section .lead {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: var(--spacing-lg);
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2.75rem;
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .methodology-card, .event-card, .instructor-card {
    margin-bottom: var(--spacing-md);
  }
  
  .accolade-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .accolade-icon {
    margin-bottom: var(--spacing-sm);
    margin-right: 0;
  }
  
  .press-logos {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 8rem 0 4rem;
  }
  
  .section-divider {
    margin-bottom: var(--spacing-sm);
  }
  
  .btn, button, input[type='submit'] {
    width: 100%;
  }
  
  .media-video {
    margin-top: var(--spacing-md);
  }
}
.navbar-toggler{
  max-width: 40px !important;
}
html,body{
    overflow-x: hidden;
}