/* Background and Base */
body {
  background: radial-gradient(circle at 20% 40%, #e4b428 0%, #CFB53B 80%);
  font-family: 'Inter', sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: transparent;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  padding-top: 40px;
  padding-bottom: 60px;
}

.logo {
  width: 130px;
}

h1, h2 {
  color: #000;
}

.lead {
  color: rgba(0, 0, 0, 0.75);
}

/* Info Cards */
.info-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.icon {
  font-size: 1.5rem;
  color: #000;
}

/* Buttons */
.btn-dark {
  background-color: #000;
  border: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: 20px;
  }

  .info-card {
    margin-bottom: 20px;
  }
}
