    /* Modern glassmorphism form styles */
    .form-container {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .form-header h2 {
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 3.5em;
      font-weight: 700;
      margin-bottom: 15px;
      opacity: 0;
      animation: slideInScale 1.2s ease forwards;
      text-align: center;
      letter-spacing: -0.02em;
      position: relative;
    }

    .form-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #2563eb, #3b82f6);
      border-radius: 2px;
      animation: expandLine 1s ease 0.5s forwards;
      transform-origin: center;
      scale: 0;
    }

    .form-header p {
      color: #64748b;
      font-size: 1.3em;
      opacity: 0;
      animation: fadeInUp 1s ease 0.4s forwards;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .form-header .icon-container {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      opacity: 0;
      animation: bounceIn 1s ease 0.2s forwards;
    }

    .form-header .icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #244273, #2563eb);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(36, 66, 115, 0.3);
      animation: pulse 2s ease-in-out infinite;
    }

    .form-header .icon svg {
      width: 28px;
      height: 28px;
      color: white;
    }

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

    @keyframes expandLine {
      to {
        scale: 1;
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(36, 66, 115, 0.3);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(36, 66, 115, 0.4);
      }
    }

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

    /* Form section styles */
    .form-section {
      scroll-margin-top: 2rem;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .form-section:nth-child(1) { animation-delay: 0.1s; }
    .form-section:nth-child(2) { animation-delay: 0.2s; }
    .form-section:nth-child(3) { animation-delay: 0.3s; }
    .form-section:nth-child(4) { animation-delay: 0.4s; }

    .form-section h3 {
      color: #2c3e50;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .form-section > div {
      margin-bottom: 20px;
    }

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

    @media (max-width: 768px) {
      .form-section .grid {
        grid-template-columns: 1fr;
      }
    }

    /* Enhanced form input styles */
    .form-input {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #e0e6ed;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
      background: #ffffff;
      font-family: inherit;
    }

    .form-input:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      transform: translateY(-2px);
    }

    .form-input:hover {
      border-color: #c8d2e7;
    }

    label {
      display: block;
      margin-bottom: 8px;
      color: #2c3e50;
      font-weight: 500;
      font-size: 0.95em;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 120px;
    }

    /* Submit button */
    .submit-btn {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: white;
      border: none;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      position: relative;
      overflow: hidden;
      margin-top: 20px;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .submit-btn:hover::before {
      left: 100%;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e293b 100%);
      min-height: 100vh;
    }

    /* Modal styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: white;
      padding: 40px;
      border-radius: 20px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      transform: scale(0.7) translateY(50px);
      transition: all 0.3s ease;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
    }

    .modal-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
    }

    .modal-icon.success {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
    }

    .modal-icon.error {
      background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      color: white;
    }

    .modal-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1f2937;
    }

    .modal-message {
      font-size: 16px;
      color: #6b7280;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .modal-button {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    @media (max-width: 480px) {
      .section-padding, .section-padding-sm, .section-padding-lg {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
      }
      .container, section, div {
        max-width: 100vw !important;
        overflow-x: hidden !important;
      }
      .grid, .flex {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
      }
      img, video {
        max-width: 100% !important;
        height: auto !important;
      }
    }
