.hero {
  background: linear-gradient(rgba(3, 13, 39, 0.6), rgba(3, 13, 39, 0.6)), url("../../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  max-width: 420px;
}

/* Buttons */
.btn-custom {
  background: #00d4ff;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
}

.btn-custom:hover {
  background: #0c3a47;
  color: #fff;
}

.btn-dark-custom {
  background: #1e1e2f;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

.btn-dark-custom:hover {
  background: #33334d;
  color: #fff;
}

.section-dark {
  background: #ffffff;
  padding: 40px 0;
}

.section-white {
  background: #ffffff;
  padding: 40px 0;
}

.card-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 25px;
  height: 100%;
  border: none;
}

.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 204, 255, 0.2);
}

.faq-section {
  background: white; 
  color: black;        
  padding: 60px 0; 
}

.card-faq {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
}

.card-faq:hover {
  transform: translateY(-4px);
}

.features-section {
  background: white; 
  color: black;        
  padding: 60px 0;     
}

.icon-box {
  font-size: 2rem;
  color: #09bfde;
}

.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #09bfde !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


