    /* Container */
    .container {
      max-width: 1280px;
      margin: 5rem auto;
      padding: 0 24px;
    }

    /* Header */
    .header {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-main {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 2px;
    }

    .logo-sub {
      font-size: 10px;
      color: #6b7280;
      letter-spacing: 1px;
    }

    .nav-link {
      color: #9ca3af;
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #22d3ee;
    }

    /* Main Content */
    .main {
      padding: 40px 0 0;
    }

    .content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    @media (max-width: 968px) {
      .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* Left Section */
    .left-section {
      padding-right: 20px;
    }

    .main-title {
      font-size: 42px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 24px;
    }

    .highlight {
      background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .description {
      font-size: 16px;
      color: #9ca3af;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    /* Feature Cards */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 40px;
    }

    @media (max-width: 600px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(0, 212, 255, 0.3);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      background: rgba(0, 212, 255, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .feature-icon svg {
      width: 22px;
      height: 22px;
      color: #22d3ee;
    }

    .feature-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .feature-desc {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 24px;
    }

    .stats-title {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 16px;
    }

    .stats-grid {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #9ca3af;
    }

    .stat-item::before {
      content: '';
      width: 6px;
      height: 6px;
      background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
      border-radius: 50%;
    }

    /* Right Section - Form */
    .right-section {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 32px;
    }

    .form-header {
      margin-bottom: 24px;
    }

    .form-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .form-subtitle {
      font-size: 14px;
      color: #6b7280;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
      color: #d1d5db;
    }

    .form-label .required {
      color: #ef4444;
      margin-left: 2px;
    }

    .form-label .optional {
      color: #6b7280;
      font-weight: 400;
      margin-left: 4px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      font-size: 14px;
      color: #ffffff;
      font-family: inherit;
      transition: all 0.3s ease;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #6b7280;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #22d3ee;
      background: rgba(0, 212, 255, 0.05);
    }

    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 40px;
      cursor: pointer;
    }

    .form-select option {
      background: #1a1f2e;
      color: #ffffff;
    }

    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }

    .submit-btn {
      width: 100%;
      padding: 14px 24px;
      background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #0a0f1a;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    .submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .form-footer {
      margin-top: 16px;
      text-align: center;
      font-size: 12px;
      color: #6b7280;
    }

    /* Footer */
    .footer {
      padding: 24px 0;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-text {
      font-size: 13px;
      color: #6b7280;
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 16px 24px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      z-index: 1000;
      transform: translateX(120%);
      transition: transform 0.3s ease;
    }

    .toast.show {
      transform: translateX(0);
    }

    .toast.success {
      background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
      color: #0a0f1a;
    }

    .toast.error {
      background: #ef4444;
      color: #ffffff;
    }

    /* Loading Spinner */
    .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid rgba(10, 15, 26, 0.3);
      border-radius: 50%;
      border-top-color: #0a0f1a;
      animation: spin 0.8s linear infinite;
      margin-right: 8px;
      vertical-align: middle;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-title {
        font-size: 32px;
      }

      .content-wrapper {
        gap: 32px;
      }

      .left-section {
        padding-right: 0;
      }

      .right-section {
        padding: 24px;
      }

      .stats-grid {
        gap: 16px;
      }
    }
