  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
  }

  body {
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
  }

  .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
  }

  h1 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 700;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .event-details {
      font-style: italic;
      margin-bottom: 15px;
      font-size: 16px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  .intro-text {
      margin-bottom: 20px;
      padding: 0 15px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  .form-container {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .form-section {
      margin-bottom: 30px;
      padding-bottom: 25px;
      border-bottom: 1px solid #eee;
  }

  .form-section:last-child {
      border-bottom: none;
  }

  .form-section h3 {
      color: #0c3c82;
      margin-bottom: 15px;
      font-size: 18px;
      display: flex;
      align-items: center;
  }

  .form-section h3:before {
      content: "Q";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background-color: #0c3c82;
      color: white;
      border-radius: 50%;
      font-size: 14px;
      margin-right: 10px;
      flex-shrink: 0;
  }

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

  label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #444;
  }

  select,
  textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 15px;
      transition: all 0.3s;
  }

  select:focus,
  textarea:focus,
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus {
      outline: none;
      border-color: #1e6bb8;
      box-shadow: 0 0 0 3px rgba(30, 107, 184, 0.2);
  }

  textarea {
      min-height: 100px;
      resize: vertical;
  }

  .radio-group {
      margin-top: 10px;
  }

  .radio-option {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }

  .radio-option input {
      margin-right: 10px;
  }

  .rating-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
  }

  .rating-option {
      flex: 1;
      min-width: 120px;
  }

  .rating-option label {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
  }

  .rating-option input {
      margin-top: 8px;
  }

  .rating-option label:hover {
      border-color: #1e6bb8;
      background-color: #f8fbff;
  }

  .rating-option input:checked+label {
      border-color: #1e6bb8;
      background-color: #e8f1fd;
      font-weight: 600;
  }


 
  .word-count {
      font-size: 12px;
      color: #777;
      text-align: right;
      margin-top: 5px;
  }

  footer {
      text-align: center;
      margin-top: 50px;
      padding: 30px 20px;
      color: white;
      font-size: 14px;
      background: linear-gradient(135deg, #0c3c82 0%, #1e6bb8 100%);
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(12, 60, 130, 0.3);
      position: relative;
      overflow: hidden;
  }

  footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #0c3c82, #1e6bb8);
  }

  .footer-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }

  .footer-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }


  .contact-info {
      margin-bottom: 15px;
      line-height: 1.5;
  }

  .contact-details {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 10px;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .copyright {
      margin-top: 20px;
      padding-top: 15px;
      border-top: 1px solid #ddd;
  }

  .toast {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      padding: 12px 20px;
      border-radius: 6px;
      color: #fff;
      font-weight: 600;
      transition: all 0.5s;
      z-index: 999;
      opacity: 0;
  }

  .toast-success {
      background-color: #28a745;
  }

  .toast-error {
      background-color: #dc3545;
  }

  .show-toast {
      top: 20px;
      opacity: 1;
  }

  .banner {
      width: 100%;
      max-width: 1343px;
      margin: 0 auto 30px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
  }

  /* Style for conditional sections */
  .conditional-section {
      transition: all 0.3s ease;
  }

  .conditional-section.hidden {
      display: none;
  }

  .hidden {
      display: none;
  }

  /* Style for required fields */
  .form-section h3.required::after {
      content: ' *';
      color: #e74c3c;
      font-weight: 600;
      margin-left: 4px;
  }

  label.required::after {
      content: ' *';
      color: #e74c3c;
      font-weight: 600;
      margin-left: 4px;
  }

  /* WhatsApp number with country code */
  .whatsapp-container {
      display: flex;
      gap: 10px;
  }

  .country-code {
      flex: 0 0 100px;
  }

  .whatsapp-number {
      flex: 1;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
      .container {
          padding: 15px;
      }

      .form-container {
          padding: 20px;
      }

      h1 {
          font-size: 24px;
      }

      .rating-options {
          flex-direction: column;
      }

      .rating-option {
          width: 100%;
      }

      .rating-option label {
          flex-direction: row;
          justify-content: space-between;
      }

      .rating-option input {
          margin-top: 0;
      }

      .submit-btn {
          width: 100%;
      }

      .contact-details {
          flex-direction: column;
          gap: 10px;
      }

      .whatsapp-container {
          flex-direction: column;
          gap: 10px;
      }

      .country-code {
          flex: 1;
      }
  }

  @media (max-width: 480px) {
      h1 {
          font-size: 20px;
      }

      .event-details {
          font-size: 14px;
      }

      footer {
          padding: 25px 15px;
      }

      .footer-title {
          font-size: 20px;
      }
  }