* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #0b2c4d;
  padding: 18px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-text {
  color: #d4af37;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}

nav a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

.login-link {
  opacity: 0.9;
}

/* HERO */
.hero {
  padding: 110px 0;
  background:
    linear-gradient(rgba(11, 44, 77, 0.78), rgba(11, 44, 77, 0.78)),
    url("images/school-bg.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 12px;
}

.description {
  max-width: 720px;
  margin: auto;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn-primary {
  background: #d4af37;
  color: #0b2c4d;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.hero-buttons {
  margin-bottom: 20px;
}

/* LOGIN HINT */
.login-hint {
  margin-top: 15px;
  font-size: 14px;
}

.login-hint a {
  color: #d4af37;
  text-decoration: underline;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section.light {
  background: #f8fafc;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0b2c4d;
}

.section-intro {
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-weight: 500;
}

/* LIST */
.list {
  list-style: none;
}

.list li {
  padding: 8px 0;
}

/* CTA */
.cta {
  background: #0b2c4d;
  color: #ffffff;
  text-align: center;
}

/* CTA FIX (ADDED) */
.cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-text {
  margin: 15px 0 30px;
  font-size: 16px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #9ca3af;
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}
