@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f4f8fb;
  color: #333;
}

/* Header */
.site-header {
  background: #0d2538;
  color: #fff;
  padding: 15px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.logo {
  margin: 0;
  font-size: 24px;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav-links li {
  margin: 0 15px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.login-btn {
  padding: 8px 16px;
  background: #00e0ff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.login-btn:hover {
  background: #00aacc;
}

/* Hero */
.hero {
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00e0ff;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #00aacc;
}

/* Sections */
.section {
  padding: 80px 20px;
}
.section.alt {
  background: #eef3f8;
}
.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background: #0d2538;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
}

