#promo {
  text-align: center;
  padding: 40px;
  background: url("../../assets/img/background_image.webp");
  background-size: cover;
}

@media (max-width: 768px) {
  #promo {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.bg-dark {
  color: #ffffff;
}

#promo .jumbotron {
  opacity: .95;
  border-radius: 30px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #promo .jumbotron {
    text-align: center;
    padding: 20px;
  }
}

.container.section {
  text-align: center;
  padding: 50px 0 60px;
}

#welcome p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
}

.section h1 {
  font-weight: normal;
  margin-bottom: 20px;
}

#about .fa {
  font-size: 48px;
}

#about .fa-check {
  color: green;
}

#about .material-icons {
  font-size: 48px;
}

.reason h2 {
  font-weight: normal;
}

/* Add dark mode styles */
[data-bs-theme="dark"] {
    background-color: #121212; /* Dark background color */
    color: #ffffff; /* Light text color */
}

[data-bs-theme="dark"] .navbar, 
[data-bs-theme="dark"] .footer-legal {
    background-color: #1c1c1c; /* Darker background for navbar and footer */
}

[data-bs-theme="dark"] .jumbotron {
    background-color: #1c1c1c; /* Darker background for jumbotron */
    color: #ffffff; /* Light text color for jumbotron */
}

/* Ensure links are visible in dark mode */
[data-bs-theme="dark"] a {
    color: #bb86fc; /* Light purple color for links */
}

/* Ensure buttons are visible in dark mode */
[data-bs-theme="dark"] .btn-primary {
    background-color: #bb86fc; /* Light purple background for buttons */
    border-color: #bb86fc; /* Light purple border for buttons */
    color: #121212; /* Dark text color for buttons */
}

