body {
  margin: 0;
  padding: 40px 20px;
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #cceaff, #8ecdf7);
  color: #333;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.enroll-container {
  max-width: 900px;
  width: 100%;
  background: #e6f7ff;
  border-radius: 25px;
  padding: 30px 40px;
  box-shadow: 0 15px 30px rgba(0, 153, 255, 0.2);
}

.page-title {
  font-size: 3rem;
  color: #007acc;
  text-align: center;
  margin-bottom: 10px;
}

.page-desc {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: #444;
}

.enroll-section {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 153, 255, 0.1);
  transition: transform 0.3s ease;
}

.enroll-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 153, 255, 0.2);
}

.enroll-section h2 {
  font-size: 2rem;
  color: #007acc;
}

.enroll-section p {
  font-size: 1.1rem;
  margin: 10px 0 20px;
}

.btn-download {
  display: inline-block;
  padding: 12px 25px;
  background: #00aaff;
  color: white;
  border-radius: 15px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: background 0.3s;
}

.btn-download:hover {
  background: #007acc;
}

.email-info {
  margin-bottom: 25px;
  font-size: 1rem;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enroll-form h3 {
  color: #007acc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.enroll-form input,
.enroll-form label {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
}

.enroll-form input[type="text"],
.enroll-form input[type="email"],
.enroll-form input[type="tel"],
.enroll-form input[type="date"],
.enroll-form input[type="file"] {
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #a5d9f4;
  outline: none;
  transition: all 0.3s ease;
  background: #f0fbff;
}

.enroll-form input:focus {
  border-color: #00aaff;
  background: #e5f6ff;
}

.btn-submit {
  padding: 15px;
  font-size: 1.2rem;
  background: linear-gradient(145deg, #00bfff, #00aaff);
  color: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 0 #007acc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 170, 255, 0.3);
}

.btn-submit:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #007acc;
}

@media (max-width: 600px) {
  .page-title {
    font-size: 2.3rem;
  }
}
/* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
