/* services/services_css/private_lessons.css */

.service-container {
  max-width: 900px;
  margin: auto;
  padding: 0 0rem;
  color: var(--white);
  text-align: center;
}

.service-container h1 {
  font-family: 'Overlock Bold', cursive;
  font-size: 2.8rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.service-description p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-description img {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 0 auto 2rem auto;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--orange);
}

.service-details {
  margin-bottom: 2rem;
}

.service-details h2 {
  font-family: 'Overlock Bold', cursive;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
  max-width: 400px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: var(--white);
}

.service-details ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-pricing {
  margin-bottom: 2rem;
}

.service-pricing h2 {
  font-family: 'Overlock Bold', cursive;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.service-pricing p {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.service-signup h2 {
  font-family: 'Overlock Bold', cursive;
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.service-signup form {
  max-width: 400px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.service-signup label {
  font-weight: 600;
  color: var(--orange);
}

.service-signup input,
.service-signup textarea {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--darkblue);
  font-family: 'Overlock', cursive;
  font-size: 1rem;
  resize: vertical;
}

.service-signup button {
  font-family: 'Overlock Bold', cursive;
  font-size: 1.2rem;
  background-color: var(--orange);
  color: var(--darkblue);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-signup button:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* Responsive */
@media (max-width: 600px) {
  .service-description img {
    max-width: 80%;
  }

  .service-details ul,
  .service-signup form {
    max-width: 100%;
    padding: 0 1rem;
  }
}
