body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
}

body h3 p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.hero {
  position: relative;
  background: url('/images/bytebuildr_hero_desktop.png') no-repeat center right;
  background-size: cover;
  background-color: #001f3f;
  padding: 6rem 1rem;
  min-height: 100vh;
  overflow: hidden;
  color: white;
}

/* Overlay dark fade for contrast */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

@media (max-width: 767.98px) {
  .hero {
    background-position: left center !important;
  }
}
@media (max-width: 767.98px) {
  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3)) !important;
  }
}

.hero .highlight {
  color: #ffc107;
}

.btn-gold {
  background-color: #ffc107;
  color: #000;
  border: none;
}

.btn-gold:hover {
  background-color: #e6ac00;
  color: #000;
}

.hero-logo {
  max-width: 40vw;
  height: auto;
}

@media (max-width: 767.98px) {
  .hero-logo {
    max-width: 80vw !important;
  }
}

.hero-content {
  max-width: 750px;
  z-index: 2;
  position: relative;
}

.features-icon {
  font-size: 2rem;
  color: #004080;
}

.section {
  padding: 4rem 1rem;
}

.feature-box {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
}

.footer {
  background: #001f3f;
  color: white;
  padding: 2rem 1rem;
}
