@import url(/style.css);    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: #ffffff;
      /* background: #0a0a0f; */
      overflow-x: hidden;
      min-height: 100vh;
    }

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

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      /* background: rgba(10, 10, 15, 0.95); */
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(147, 51, 234, 0.2);
      z-index: 1000;
      padding: 15px 0;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #9333ea, #7c3aed);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .back-link {
      color: #c084fc;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .back-link:hover {
      color: #9333ea;
    }

    /* Hero Section */
    .hero {
      padding: 120px 0 80px;
      position: relative;
      background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.1) 0%, rgba(10, 10, 15, 1) 70%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 30% 40%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
      animation: pulse 6s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(147, 51, 234, 0.2);
      border: 1px solid rgba(147, 51, 234, 0.3);
      border-radius: 50px;
      font-size: 0.9rem;
      color: #c084fc;
      margin-bottom: 2rem;
      backdrop-filter: blur(10px);
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff 0%, #c084fc 50%, #9333ea 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .hero .description {
      font-size: 1.2rem;
      color: #d1d5db;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* Main Content */
    .main-content {
      padding: 80px 0;
      position: relative;
    }

    .consultation-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    /* Form Section */
    .form-section {
      background: rgba(30, 41, 59, 0.5);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(147, 51, 234, 0.3);
      padding: 50px 40px;
      border-radius: 24px;
      position: relative;
      overflow: hidden;
    }

    .form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #9333ea, #c084fc, #7c3aed);
    }

    .form-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .form-section p {
      color: #d1d5db;
      margin-bottom: 2rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .consultation-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      color: #ffffff;
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 16px 20px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(147, 51, 234, 0.3);
      border-radius: 12px;
      color: #ffffff;
      font-size: 1rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #9333ea;
      box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
      background: rgba(15, 23, 42, 0.9);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #9ca3af;
    }

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

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

    .submit-btn {
      padding: 18px 32px;
      background: linear-gradient(135deg, #9333ea, #7c3aed);
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      margin-top: 10px;
    }

    .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(-2px);
      box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
    }

    .submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    /* Info Section */
    .info-section {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .info-card {
      background: rgba(30, 41, 59, 0.4);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(147, 51, 234, 0.2);
      padding: 35px 30px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
      border-color: rgba(147, 51, 234, 0.4);
      box-shadow: 0 15px 35px rgba(147, 51, 234, 0.15);
    }

    .info-card h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-card-icon {
      font-size: 1.5rem;
      background: linear-gradient(135deg, #9333ea, #c084fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .info-card p {
      color: #d1d5db;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .info-list {
      list-style: none;
      margin-top: 15px;
    }

    .info-list li {
      color: #d1d5db;
      margin-bottom: 8px;
      position: relative;
      padding-left: 20px;
    }

    .info-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #9333ea;
      font-weight: bold;
    }

    /* Success/Error Messages */
    .message {
      padding: 15px 20px;
      border-radius: 12px;
      margin-bottom: 20px;
      font-weight: 500;
      display: none;
    }

    .message.success {
      background: rgba(16, 185, 129, 0.2);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #10b981;
    }

    .message.error {
      background: rgba(239, 68, 68, 0.2);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #ef4444;
    }

    /* Loading Spinner */
    .loading-spinner {
      width: 20px;
      height: 20px;
      border: 2px solid transparent;
      border-top: 2px solid #ffffff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      display: none;
      margin-right: 10px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .consultation-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .form-section,
      .info-card {
        padding: 40px 30px;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      
      .form-section,
      .info-card {
        padding: 30px 25px;
      }
      
      .main-content {
        padding: 60px 0;
      }
    }

    /* Scroll animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
