* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 20px;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #d71920;
}

.nav-btn {
  background: #d71920;
  padding: 8px 14px;
  border-radius: 6px;
  color: white;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, rgba(220, 20, 20, 0.3), transparent 50%), #000;
  padding: 40px 20px;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero-logo {
  width: min(700px, 90%);
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ddd;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: #d71920;
  color: #fff;
}

.btn-primary:hover {
  background: #b81419;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* CONTENT */
.container {
  width: min(1100px, 92%);
  margin: auto;
}

section {
  padding: 70px 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

h3 {
  margin-top: 0;
}

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

.card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #222;
}

/* PRICING */
.price-list {
  margin-top: 20px;
  border-top: 1px solid #333;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px;
  border-bottom: 1px solid #333;
}

.pricing-note {
  margin-top: 15px;
  font-style: italic;
  color: #ccc;
}

/* SPECIALTIES */
.specialties h3 {
  margin-bottom: 10px;
}

.specialties p {
  font-size: 0.95rem;
  color: #ccc;
}

.specialties .btn {
  margin-top: 15px;
  display: inline-block;
}

/* CREDIBILITY */
.credibility h3 {
  margin-bottom: 10px;
}

.credibility p {
  font-size: 0.95rem;
  color: #ccc;
}

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

.booking-card {
  display: block;
  padding: 20px;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  text-align: center;
  font-weight: bold;
  transition: 0.2s ease;
}

.booking-card:hover {
  background: #d71920;
  transform: translateY(-3px);
}

.highlight {
  border: 2px solid #d71920;
}

/* CONTACT LINKS */
.contact a {
  color: #fff;
}

.contact a:hover {
  color: #d71920;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    justify-content: center;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.7rem;
  }
}
