.schedule-section {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #0d9488;
  }

  .section-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0d9488;
  }

  .section-header p {
    font-size: 16px;
    color: #555;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0d9488;
  }
  
  .form-group label::after {
    content: " *";
    color: #0d9488;
    font-weight: bold;
  }

  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #0d9488;
    border-radius: 6px;
    background-color: white;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
  }

  .form-group.full-width {
    grid-column: span 2;
  }

  .btn {
    background-color: #0d9488;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    width: 100%;
    max-width: 300px;
  }

  .btn:hover {
    background-color: #0a6e65;
    transform: translateY(-3px);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
      grid-column: span 1;
    }
  }

  .success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: rgba(13, 148, 136, 0.1);
    border: 2px solid #0d9488;
    border-radius: 6px;
    margin-top: 20px;
    color: #0d9488;
  }
  
  .success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
 