    /* Ultra-thin minimal scrollbar like in your image */

/* For Webkit browsers (Chrome, Safari, Edg-e) */
::-webkit-scrollbar {
  width: 1px; /* Very thin width */
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #010136;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #010136;
}

:root {
  --grey-6: #f8f9fb;
  --grey-1: #00162f;
  --grey-4: #b6c5d4;
  --grey-3: #627183;
  --white: white;
  --primary-blue: #763ff9;
  --primary-rose: #ff0174;
  --grey-5: #e1e6f0;
  --primary-purple: #7a31e3;
  --primary-purple-2: #ffb731;
  --primary-orange: #f85b43;
  --primary-green: #01dda5;
  --grey-2: #25364e;
}
    
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            color: #0c0d0e;
            min-height: 100vh;
            padding: 60px 40px;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
            opacity: 0;
            transform: translateY(30px);
        }


        .go-home {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 40px;
            opacity: 0.7;
            transform: translateY(20px);
            cursor: pointer;
        }

        h1 {
            font-size: 80px;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 40px;
            letter-spacing: -2px;
            transform: translateY(20px);
            color: var(--primary-blue);
        }

        .description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 80px;
            opacity: 0.8;
            max-width: 600px;
            transform: translateY(20px);
        }

        .contact-label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            opacity: 0.7;
            transform: translateY(20px);
        }

        .email {
            font-size: 32px;
            font-weight: 300;
            word-break: break-all;
            transform: translateY(20px);
        }

        .right-section {
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(30px);
        }

        .form-fields {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .form-row {
            display: grid;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            opacity: 0;
            transform: translateY(20px);
        }

        label {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.7;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(12, 13, 14, 0.2);
            padding: 16px 0;
            font-size: 16px;
            color: #0c0d0e;
            font-family: inherit;
            transition: border-color 0.3s;
            width: 100%;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus {
            outline: none;
            border-bottom-color: seagreen;
        }

        input::placeholder {
            color: rgba(12, 13, 14, 0.4);
        }

        .photo-upload {
            grid-column: span 2;
            margin-top: 20px;
        }

        .upload-area {
            border: 1px solid rgba(12, 13, 14, 0.2);
            border-radius: 4px;
            background: #f8f8f8;
            max-width: 200px;
            height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .upload-area:hover {
            border-color: rgba(12, 13, 14, 0.4);
            background: #f0f0f0;
        }

        .upload-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 12px;
            opacity: 0.4;
        }

        .upload-icon svg {
            width: 100%;
            height: 100%;
            stroke: #0c0d0e;
            fill: none;
            stroke-width: 1.5;
        }

        .upload-text {
            font-size: 12px;
            color: #0c0d0e;
            opacity: 0.6;
            text-align: center;
            padding: 0 8px;
        }

        #photoInput {
            display: none;
        }

        .preview-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .upload-area.has-image .upload-icon,
        .upload-area.has-image .upload-text {
            display: none;
        }

        .upload-area.has-image .preview-image {
            display: block;
        }

        .remove-photo {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(12, 13, 14, 0.7);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
        }

        .remove-photo:hover {
            background: rgba(12, 13, 14, 0.9);
        }

        .upload-area.has-image:hover .remove-photo {
            display: flex;
        }

        .remove-photo svg {
            width: 12px;
            height: 12px;
            stroke: white;
            stroke-width: 2;
        }

        .form-footer {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
            opacity: 0;
            transform: translateY(20px);
        }

        .form-notes {
            font-size: 13px;
            opacity: 0.6;
            line-height: 1.6;
        }

        .submit-btn {
            background: #0c0d0e;
            color: #ffffff;
            border: none;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
            align-self: flex-start;
            opacity: 0;
            transform: translateY(20px);
        }

        .submit-btn:hover {
            background: var(--primary-blue);
            color: var(--grey-6);
            transform: translateY(-1px) translateY(20px);
        }

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

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        

        @media (max-width: 1200px) {
            .container {
                gap: 60px;
            }

            h1 {
                font-size: 60px;
            }

            .email {
                font-size: 24px;
            }
        }

        @media (max-width: 991px) {
            .container {
                grid-template-columns: 1fr;
                gap: 80px;
            }

            h1 {
                font-size: 56px;
            }

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

            .photo-upload {
                grid-column: span 1;
            }

            .upload-area {
                width: 200px;
                height: 250px;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            body {
                padding: 40px 20px;
            }

            h1 {
                font-size: 48px;
            }

            .description {
                font-size: 16px;
                margin-bottom: 60px;
            }

            .email {
                font-size: 20px;
            }

            .upload-area {
                width: 150px;
                height: 180px;
                margin: 0 auto;
            }
        }

        @media (max-width: 479px) {
            h1 {
                font-size: 36px;
            }

            .email {
                font-size: 18px;
            }

            .submit-btn {
                width: 100%;
            }

            .upload-area {
                width: 140px;
                height: 170px;
            }
        }

        /* Loading animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f0f0f0;
            border-top-color: #0c0d0e;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }