/* Reset and base styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #ffcc00;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 40px; }
.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.nav-links a:hover { text-decoration: underline; }

/* Hero Section */
.hero {
  background: url('../images/banner.png') no-repeat center/cover;
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}
.hero h1 { font-size: 3em; margin-bottom: 20px; }
.hero p { font-size: 1.25em; margin-bottom: 30px; }

/* Buttons */
.primary-btn {
  padding: 12px 24px;
  background-color: #ffcc00;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  font-size: 1em;
}
.primary-btn:hover {
  background-color: #e6b800;
  box-shadow: 0 0 10px #ffcc00;
  transition: 0.3s ease-in-out;
}

/* Sections */
.container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}

/* Cards */
.info-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.info-card h3 { margin-bottom: 10px; }

/* Footer */
.footer {
  background: #ffcc00;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #ffcc00; border-radius: 4px; }
::-webkit-scrollbar-track { background: #eee; }