:root {
  
  --primary-color: #ff6b88; 
  --secondary-color: #67d4f1; 
  --accent-color: #86e0b5; 
  --accent-dark: #66c195; 
  --background-light: #f8f5ff; 
  --background-dark: #474056; 
  --text-dark: #2b2438; 
  --text-light: #ffffff; 
  --text-muted: #95919e; 
  --shadow-color: rgba(156, 136, 255, 0.2); 
  --overlay-color: rgba(43, 36, 56, 0.6); 
  
  
  --card-border-radius: 16px;
  --button-border-radius: 12px;
  --shadow-default: 0 8px 24px var(--shadow-color);
  --shadow-hover: 0 12px 28px rgba(156, 136, 255, 0.35);
  --volume-top: 0px;
  --volume-right: 0px;
  --volume-left: 0px;
  --volume-default: 8px;
  --volume-pressed: 4px;
  --transition-speed: 0.3s;
  
  
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  --h1-size: 4.5rem;
  --h2-size: 3rem;
  --h3-size: 2rem;
  --h4-size: 1.5rem;
  --body-size: 1.125rem;
  --small-size: 0.875rem;
  
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

html{
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

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

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

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

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


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

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }


.volume-card {
  position: relative;
  background-color: var(--text-light);
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-default);
  transform: translate3d(0, 0, 0);
  transition: all var(--transition-speed) ease-in-out;
  border: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.volume-card::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--volume-default));
  right: var(--volume-right);
  left: var(--volume-left);
  top: var(--volume-top);
  background: var(--accent-color);
  border-radius: var(--card-border-radius);
  z-index: -1;
  transition: all var(--transition-speed) ease-in-out;
}

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

.volume-input {
  position: relative;
  border: 2px solid var(--background-light);
  border-radius: var(--button-border-radius);
  transition: all var(--transition-speed) ease;
  padding: 12px 20px;
  font-family: var(--body-font);
}

.volume-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(134, 224, 181, 0.3);
  outline: none;
}

.volume-btn {
  position: relative;
  transform-style: preserve-3d;
  transition: transform var(--transition-speed) ease;
}

.volume-btn:active {
  transform: translateY(var(--volume-pressed));
}

.volume-btn:active::after {
  bottom: calc(-1 * var(--volume-pressed));
}


.btn {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--button-border-radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) ease;
  border: none;
  transform-style: preserve-3d;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--volume-default));
  left: 0;
  right: 0;
  height: var(--volume-default);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transition: all var(--transition-speed) ease;
}

.btn:active {
  transform: translateY(var(--volume-pressed));
}

.btn:active::after {
  bottom: calc(-1 * var(--volume-pressed));
}

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

.btn-primary:hover {
  background-color: var(--primary-color);
  opacity: 0.9;
  color: var(--text-light);
}

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

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

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

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

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}


.retro-header {
  background-color: var(--text-light);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 20px;
  width: 50px;
  width: auto;
}
.navbar-brand{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  h1{
    font-size: 22px;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.nav-link {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 20px;
  position: relative;
  transition: color var(--transition-speed) ease;
}

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

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

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


.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 36, 56, 0.8) 0%, rgba(43, 36, 56, 0.6) 100%);
  z-index: 1;
}

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

.animated-title {
  font-weight: 800;
  background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-text-fill-color: transparent;
  animation: gradient 10s ease infinite;
  background-size: 200% 200%;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-buttons {
  margin-top: var(--spacing-md);
}

.event-date {
  margin-top: var(--spacing-lg);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-section{
  .event-date h3{
    color: #fff;
  }
}


.section-title {
  font-weight: 700;
  position: relative;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.section-divider {
  height: 4px;
  width: 70px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto var(--spacing-md);
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}


.about-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

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

.stat-icon {
  margin-bottom: var(--spacing-sm);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.stat-title {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--text-dark);
}


.features-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--text-light);
}

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border: none;
  overflow: hidden;
}

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

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

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

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

.card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.card-text {
  color: var(--text-muted);
}


.media-section {
  padding: var(--spacing-xl) 0;
  color: var(--text-light);
  position: relative;
}

.video-container {
  position: relative;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button span {
  color: var(--text-light);
  font-weight: 600;
}

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

.gallery-container {
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-default);
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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


.success-stories-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.success-card {
  height: 100%;
  overflow: hidden;
}

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

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

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}


.resources-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--text-light);
}

.resource-card {
  text-align: center;
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-icon {
  margin-bottom: var(--spacing-sm);
}

.resource-title {
  margin-bottom: var(--spacing-sm);
}

.resource-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.resource-list li {
  margin-bottom: var(--spacing-xs);
}

.resource-list a {
  color: var(--text-dark);
  transition: color var(--transition-speed) ease;
}

.resource-list a:hover {
  color: var(--primary-color);
}


.research-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.research-card {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.research-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.research-meta {
  font-size: var(--small-size);
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.research-description {
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.research-stats {
  margin: var(--spacing-md) 0;
  width: 100%;
}

.stat-item {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: var(--small-size);
  color: var(--text-muted);
  margin: 0;
}


.press-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--text-light);
}

.press-quote {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-icon {
  margin-bottom: var(--spacing-sm);
}

.press-quote blockquote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

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

.source img {
  margin-bottom: var(--spacing-xs);
  height: 40px;
  width: auto;
}

.source cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
}


.pricing-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  padding: 5px 40px;
  transform: rotate(45deg);
  z-index: 2;
}

.pricing-header {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: var(--spacing-md);
  border-top-left-radius: var(--card-border-radius);
  border-top-right-radius: var(--card-border-radius);
  width: 100%;
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.currency {
  font-size: 1.5rem;
  margin-right: 5px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  margin-left: 5px;
  opacity: 0.8;
}

.pricing-body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.feature-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 0;
}

.pricing-note {
  font-size: var(--small-size);
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.info-card {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.customer-stories-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  color: var(--text-light);
}

.testimonial-card {
  text-align: center;
  padding: var(--spacing-md);
  height: 100%;
  background-color: var(--text-light);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
  border: 3px solid var(--primary-color);
}

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

.testimonial-content {
  flex: 1;
}

.testimonial-rating {
  color: var(--primary-color);
  margin-top: var(--spacing-xs);
}


.careers-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.careers-content {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.job-listings {
  width: 100%;
  margin-top: var(--spacing-sm);
}

.job-card {
  background-color: var(--text-light);
  padding: var(--spacing-md);
  border-radius: var(--card-border-radius);
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-speed) ease;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.careers-image-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.volunteer-info {
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
  text-align: center;
}

.volunteer-info ul {
  text-align: left;
  margin-bottom: var(--spacing-md);
}


.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--text-light);
}

.contact-form {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form form {
  width: 100%;
}

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

.contact-info {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  width: 100%;
}

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

.info-content {
  flex: 1;
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.map-container {
  width: 100%;
  margin-top: var(--spacing-md);
}

.google-map {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.google-map:hover .map-overlay {
  opacity: 1;
}


.footer-section {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

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

.social-links a {
  color: var(--text-light);
  margin-right: var(--spacing-sm);
  transition: color var(--transition-speed) ease;
  font-weight: 600;
}

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

.footer-heading {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all var(--transition-speed) ease;
}

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

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

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

.footer-bottom p {
  margin-bottom: 5px;
  font-size: var(--small-size);
  opacity: 0.7;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-5px);
}


.modal-content {
  border-radius: var(--card-border-radius);
  border: none;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  color: var(--primary-color);
}

.modal-body {
  padding: var(--spacing-md) var(--spacing-md) 0;
}

.modal-footer {
  border-top: none;
  padding: var(--spacing-md);
}


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

.success-content {
  text-align: center;
  padding: var(--spacing-lg);
  max-width: 600px;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
}

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

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


.content-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.content-container {
  background-color: var(--text-light);
  border-radius: var(--card-border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-default);
}

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


[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(15deg);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}


@media (max-width: 991.98px) {
  :root {
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.25rem;
  }
  
  .navbar-collapse {
    background-color: var(--text-light);
    padding: 15px;
    border-radius: var(--card-border-radius);
    margin-top: 15px;
    
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
  :root {
    --h1-size: 2.75rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --body-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .parallax-bg {
    background-attachment: scroll;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
  }
  
  .btn-lg {
    padding: 12px 25px;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .animated-title {
    font-size: 2.25rem;
  }
}