/* =========================
   ONE-ON-ONE CLASS PAGE
   Multimedia Ads
========================= */

* {
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f7fb;
  color: #0b1c2d;
}

/* HERO */
.oneonone-hero {
  background: linear-gradient(135deg, #00c897, #0b1c2d);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.oneonone-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* CONTENT */
.oneonone-content {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two-col {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

/* DETAILS */
.details h2 {
  }
  .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  margin-bottom: 20px;
}

.details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.details ul li {
  margin-bottom: 12px;
}

.session-info p {
  margin: 6px 0;
  font-size: 0.95rem;
}

/* FORM */
.booking-form {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.booking-form h3 {
  margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

.booking-form textarea {
  resize: vertical;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #00c897;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00b386;
}

.form-note {
  margin-top: 10px;
  font-size: 0.8rem;
  text-align: center;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col {
    flex-direction: column;
    align-items: center;
  }

  .booking-form {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .oneonone-hero h1 {
    font-size: 2rem;
  }
}
