body {
  background-color: #111;
  color: #eee;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin: 0;
  padding: 2rem;
}

h1 {
  font-family: Arial, Helvetica, sans-serif; /* Clean, modern sans-serif */
  font-size: 2.5rem;                        /* Slightly larger than default */
  color: #ffffff;                            /* White text */
  text-align: center;                        /* Centered */
  margin-top: 40px;                          /* Space from top */
  margin-bottom: 20px;                       /* Space before image */
  letter-spacing: 1px;                       /* Slightly spaced letters for readability */
  font-weight: 600;                          /* Slightly bolder than default */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Soft shadow to make white text pop on background */
}

/* Optional: responsive for smaller screens */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}


.lesson-image {
  display: block;
  max-width: 80%;       /* Image width will not exceed 80% of page/container width */
  max-height: 400px;    /* Prevents tall portrait images from being overwhelming */
  width: auto;          /* Let browser scale width based on height */
  height: auto;         /* Maintain aspect ratio */
  margin: 20px auto;    /* Center image and add spacing */
  border-radius: 8px;   /* Optional styling */
  object-fit: cover;    /* Keeps image proportion correct if cropped */
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

button {
  background: #fff;
  color: #111;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

button:hover {
  background: #ffcc00;
}

.booking-button {
  display: inline-block;
  background-color: #e74c3c; /* Red button */
  color: #ffffff;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.booking-button:hover {
  background-color: #c0392b; /* Slightly darker on hover */
}
