
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      padding: 20px 0;
    }

    .form-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .form-container {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      overflow: hidden;
      animation: fadeIn 0.6s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .form-header {
      background: linear-gradient(135deg, #003366 0%, #00509e 100%);
      color: white;
      padding: 30px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .form-header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .form-header img {
      width: 80px;
      height: 80px;
      background: white;
      border-radius: 50%;
      padding: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: relative;
      z-index: 1;
    }

    .form-header h2 {
      font-weight: 700;
      font-size: 1.8rem;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .form-header h5 {
      color: #ffd700;
      font-weight: 500;
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .announcement {
      background: #fff3cd;
      border-left: 4px solid #ff6600;
      padding: 12px 15px;
      margin: 20px 0 0 0;
      border-radius: 8px;
      position: relative;
      z-index: 1;
    }

    .announcement marquee {
      color: #c0392b;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .form-body {
      padding: 40px 30px;
    }

    .section-title {
      color: #003366;
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 3px solid #ff6600;
      display: inline-block;
    }

    .form-label {
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .form-label small {
      color: #dc3545;
      font-weight: 600;
    }

    .form-control, .form-select {
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      padding: 12px 15px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: #003366;
      box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.15);
    }

    .form-text {
      font-size: 0.85rem;
      margin-top: 5px;
    }

    .text-muted {
      color: #6c757d !important;
      font-size: 0.85rem;
    }

    .divider {
      border: none;
      height: 2px;
      background: linear-gradient(to right, transparent, #e0e0e0, transparent);
      margin: 35px 0;
    }

    .fee-box {
      background:  #003366;
      color: white;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow:  #003366;
    }

    .fee-box h4 {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 10px 0;
    }

    .fee-box input {
      background: transparent;
      border: none;
      color: white;
      font-size: 2.5rem;
      font-weight: 700;
      width: 100px;
      text-align: center;
    }

    .note-box {
      background: #f8f9fa;
      border-left: 4px solid #003366;
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .note-box label {
      font-weight: 600;
      color: #003366;
      margin-bottom: 8px;
    }

    .form-check-input:checked {
      background-color: #003366;
      border-color: #003366;
    }

    .btn-submit {
      background: linear-gradient(135deg, #003366 0%, #00509e 100%);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 15px 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 51, 102, 0.3);
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 51, 102, 0.4);
      background: linear-gradient(135deg, #00509e 0%, #003366 100%);
    }

    .footer-text {
      background: #f8f9fa;
      text-align: center;
      padding: 20px;
      color: #666;
      font-size: 0.9rem;
      border-top: 1px solid #e0e0e0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .form-header h2 {
        font-size: 1.4rem;
      }

      .form-header h5 {
        font-size: 0.95rem;
      }

      .form-body {
        padding: 25px 20px;
      }

      .section-title {
        font-size: 1.1rem;
      }

      .fee-box h4,
      .fee-box input {
        font-size: 2rem;
      }

      .btn-submit {
        width: 100%;
        padding: 15px 30px;
      }

      .announcement marquee {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 576px) {
      body {
        padding: 10px 0;
      }

      .form-container {
        border-radius: 15px;
      }

      .form-header {
        padding: 20px 15px;
      }

      .form-header img {
        width: 60px;
        height: 60px;
      }

      .form-header h2 {
        font-size: 1.2rem;
      }

      .form-header h5 {
        font-size: 0.85rem;
      }

      .form-body {
        padding: 20px 15px;
      }

      .section-title {
        font-size: 1rem;
      }
    }

    /* Loading Animation */
    .spinner-border-sm {
      width: 1rem;
      height: 1rem;
      border-width: 0.15em;
    }