/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  color: white;
  overflow-x: hidden;
  padding-top: 60px;
}

.navbar {
  background-color: rgba(44, 62, 80, 0.9);
}

.nav-link {
  color: white !important;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 50px 15px;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
}

.tab-pane {
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 20px;
}

.btn-custom {
  background-color: #fff;
  color: #2c3e50;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: bold;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}