body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: white; 
  color: #333;
  padding-top: 25px; 
}

.custom-navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030; 
  transition: top 0.3s ease-in-out;
}

.navbar-hidden {
  top: -40px; 
}

.table-light th {
    font-weight: normal; 
}

.navbar-brand {
  display: flex;
  align-items: center; 
  padding-top: 0.25rem; 
  padding-bottom: 0.25rem; 
}
.nav-link {
  padding-top: 0.5rem !important; 
  padding-bottom: 0.5rem !important; 
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important; 
    padding: 0;
  }
}

.navbar-logo-img {
  height: 30px; 
  width: auto; 
}

.img-placeholder-white {
  background-color: white; 
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.text-pink { color: #ff007f; }
.text-purple { color: #b900ff; }

.download-btn-base {
  margin: 10px 5px;
  padding: 12px 30px; 
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease; 
  background-size: 200% auto;
  color: white;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  display: block; 
  width: 90%; 
  max-width: 200px; 
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.btn-red-gradient { 
  background-image: linear-gradient(to right, #FF007F 0%, #FF8A00 51%, #FF007F 100%); 
}
.btn-blue-gradient { 
  background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 51%, #4facfe 100%);
}
.btn-green-gradient { 
  background-image: linear-gradient(to right, #38ef7d 0%, #11998e 51%, #38ef7d 100%);
}

.download-btn-base:hover {
  transform: scale(1.05); 
  background-position: right center;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
}

@media (max-width: 767.98px) {
  .btn-row-no-wrap {
    display: block; 
  }
  .download-btn-base {
    width: 100%; 
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .btn-container-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .btn-row-no-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; 
  }
  .download-btn-base {
    display: inline-block;
    width: auto;
    padding: 16px 50px; 
    max-width: 280px; 
    font-size: 1.1rem; 
  }
}

.feature-heading {
  font-size: 1.0rem;
  font-weight: bold;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  border-left: 5px solid #ff007f; 
  padding-left: 10px;
}