:root {
  /* Color Palette */
  --primary-color: #ff6b6b;
  --primary-darker: #e74c3c;
  --secondary-color: #4ecdc4;
  --secondary-darker: #1d9b92;
  --accent-color: #ffd166;
  --dark-color: #2d3436;
  --light-color: #f9f9f9;
  --gray-color: #95a5a6;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #ff8e8e);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #6fe9e4);
  --gradient-dark: linear-gradient(135deg, var(--dark-color), #464b4d);
  --gradient-hero: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  
  /* 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);
  --shadow-neo: 5px 5px 0px rgba(0, 0, 0, 0.8);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* 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-body);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

section {
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
}

/* Button Styles */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-neo);
  border-radius: 0;
}

.btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width var(--transition-normal);
  z-index: -1;
}

.btn:hover::after {
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-darker);
  border-color: var(--primary-darker);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.8);
}

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

.btn-outline-light:hover {
  background-color: white;
  color: var(--dark-color);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.8);
}

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

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  z-index: 1000;
}

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

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  color: var(--dark-color);
  position: relative;
}

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

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

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

/* Hero Section */
.hero-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  max-width: 80%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.about-section h3 {
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
  transition: all var(--transition-normal);
}

.image-container:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
}

.rounded-custom {
  border-radius: var(--radius-md);
}

.stat-box {
  background-color: var(--dark-color);
  color: white;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1;
  box-shadow: var(--shadow-neo);
  transition: all var(--transition-normal);
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.stat-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
  background-color: var(--dark-color);
  color: white;
}

.mission-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.mission-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
}

.mission-content h3 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.75rem;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.value-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
}

.value-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.5rem;
}

.value-text {
  font-weight: 500;
}

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

.workshops-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.workshop-card {
  background-color: white;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.workshop-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
}

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

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

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

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.workshop-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.workshop-details {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.workshop-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.resources-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.resources-accordion .accordion-item {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.resources-accordion .accordion-button {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1.25rem;
  box-shadow: none;
}

.resources-accordion .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: white;
}

.resources-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

.resources-accordion .accordion-body {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
}

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

.team-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.team-card {
  background-color: white;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
}

.team-card .card-image {
  height: 300px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--gray-color);
  font-size: 0.95rem;
}

/* Research Section */
.research-section {
  background-color: var(--dark-color);
  color: white;
}

.research-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.research-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
  height: 100%;
}

.research-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
}

.research-content {
  padding: 2rem;
}

.research-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

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

.press-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.press-slider {
  position: relative;
}

.press-slide {
  margin: 0 1rem;
}

.press-quote {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
  position: relative;
  transition: all var(--transition-normal);
}

.press-quote:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
}

.press-quote p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.press-source {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.press-source img {
  max-height: 40px;
  width: auto;
}

.press-source span {
  font-weight: 600;
  color: var(--gray-color);
}

.press-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.press-controls button {
  background-color: var(--dark-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
}

.press-controls button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Sustainability Section */
.sustainability-section {
  background-color: var(--dark-color);
  color: white;
}

.sustainability-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.sustainability-section h3 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.75rem;
}

.sustainability-goals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.goal-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-neo);
}

.goal-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.goal-icon {
  font-size: 1.5rem;
}

.goal-text {
  font-weight: 500;
}

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

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

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

.contact-section h3 {
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.contact-info {
  padding-right: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-text {
  font-size: 1rem;
  flex: 1;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
}

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

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #eaeaea;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  position: relative;
}

.footer h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  position: relative;
  padding-bottom: 1rem;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all var(--transition-normal);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

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

.newsletter-form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.75rem 1.5rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neo);
}

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

.success-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  min-height: 100vh;
}

.privacy-page h1, .terms-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.privacy-page h2, .terms-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.privacy-content, .terms-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Media Queries */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  section h2, 
  .mission-section .section-title,
  .resources-section h2,
  .research-section h2,
  .team-section h2,
  .press-section h2,
  .sustainability-section h2,
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .about-section h3, 
  .mission-content h3, 
  .sustainability-section h3, 
  .contact-section h3 {
    font-size: 1.5rem;
  }
  
  .stat-box {
    padding: 1.25rem 0.75rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  section h2, 
  .mission-section .section-title,
  .resources-section h2,
  .research-section h2,
  .team-section h2,
  .press-section h2,
  .sustainability-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .footer h3 {
    font-size: 1.75rem;
  }
  
  .footer h5 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .press-quote {
    padding: 1.5rem;
  }
  
  .press-quote p {
    font-size: 1rem;
  }
}

/* Animation Styles */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom Classes for Specific Elements */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

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

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

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

.shadow-neo {
  box-shadow: var(--shadow-neo);
}