html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  flex-wrap: nowrap;
}

.logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  padding: 1rem 1rem; /* breathing room above and below */
}

.navbar {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-link {
  color: white;
  margin: 0 1.25rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FAD93A;
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link.active {
  color: #FAD93A;
}

.nav-link.active::after {
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: #FAD93A;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 0;
  width: 100vw;  /* full viewport width */
  text-align: center;
}

@media (max-width: 1236px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin: 0 auto 0.5rem auto;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-menu {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-link {
    margin: 0.5rem 1rem;
  }
}

@media (max-width: 990px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    background: #FAD93A;
    display: none;
    flex-direction: column;
    width: 100%;
  }
.nav-link {
    color: #000; /* black text for contrast on gold */
  }
  .nav-menu.open {
    display: flex;
  }
}

.content {
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

@media (min-width: 768px) {
  .content {
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .content {
    padding: 0 3rem;
  }
}

.callout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.callout {
  background: #c00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

.callout a {
  color: yellow;
  font-weight: bold;
}

.callout.signup {
  background: #c00;
}

.feature {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  flex-wrap: nowrap;
}

.feature-icon {
  width: 140px;
  height: auto;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature h2 {
  margin: 0 0 0.25rem 0;
}

.feature p {
  margin: 0;
}

@media (max-width: 600px) {
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin: 0 0 0.5rem 0;
  }

  .feature > div {
    align-items: center;
  }
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer-special {
  background: #fff;
  color: #c00;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-payment {
  margin: 1rem 0;
}

.payment-icon {
  width: 100px;
  margin-bottom: -20px;
}

.payment-box {
  background: #009245;
  color: white;
  width: 300px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 1rem;
}

.payment-box a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.payment-box a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin-top: 1rem;
}

.instructor-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.instructor-text {
  flex: 1 1 300px;
}

.instructor-text h1 {
  margin-bottom: 0.5rem;
}

.instructor-text h2 {
  margin-top: 0;
  font-weight: normal;
}

.instructor-text p {
  text-align: left;
  line-height: 1.6;
}

.instructor-image {
  flex: 1 1 300px;
  text-align: center;
}

.instructor-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.schedule-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.schedule-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-day {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100px;
  border-radius: 4px;
}

.schedule-block {
  background: #fdd300;
  padding: 1rem;
  text-align: center;
  width: 100px;
  margin-top: 0.5rem;
  border-radius: 4px;
}

.centered-heading {
  text-align: center;
}

.price-box {
  text-align: center;
  margin: 2rem 0;
}

.price-info {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.price-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-duration {
  font-size: 1.5rem;
}

.price-amount {
  font-weight: bold;
  font-size: 3.5rem;
}

.price-icon {
  height: auto;
}

.form-wrapper {
  max-width: 500px;
  margin: 2rem auto;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
}

.form-wrapper label {
  font-weight: bold;
  margin: 0.5rem 0 0.25rem 0;
}

.form-wrapper input[type="text"],
.form-wrapper select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.form-wrapper input[type="submit"] {
  background: #c00;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
}

.form-wrapper input[type="submit"]:hover {
  background: #900;
}

.form-wrapper p {
  font-size: 0.75rem;
  color: #444;
}

.student-layout {
  display: flex;
  gap: 1rem;
}

.student-sidebar {
  min-width: 200px;
  padding: 1rem;
  background: #f8f8f8;
  border-right: 1px solid #ddd;
}

.student-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.student-nav a {
  text-decoration: none;
  color: #000;
}

.student-nav a:hover {
  color: #c00;
}

.student-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  margin-bottom: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .student-layout {
    flex-direction: column;
  }

  .student-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .student-nav {
    display: none;
    flex-direction: column;
  }

  .student-nav.open {
    display: flex;
  }

  .student-nav-toggle {
    display: block;
  }
}

ol li {
  line-height: 1.8;
}

.one-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem auto;
  max-width: 1200px;
}

.one-step-box {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  width: 260px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.one-step-box h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #c00;
}

.one-step-box p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

main {
  flex: 1;
}
