
        /* Minimalist Registration Styling */
        .registration-container {
            min-height: calc(100vh - 80px);
            background: #ffffff;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .registration-card {
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 4rem 3rem;
            max-width: 1000px;
            width: 100%;
            box-shadow: 0 4px 16px rgba(33, 29, 62, 0.08);
        }

        .registration-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .registration-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .registration-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .user-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 0;
        }

        .user-type-card {
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 4px 16px rgba(33, 29, 62, 0.08);
            height: 100%;
        }

        .user-type-card:hover {
            border-color: #ff6b35;
            box-shadow: 0 8px 24px rgba(33, 29, 62, 0.12);
            text-decoration: none;
            color: inherit;
            transform: translateY(-4px);
        }

        .user-type-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #6b7280;
            transition: all 0.2s ease;
        }

        .user-type-card:hover .user-type-icon {
            color: #ff6b35;
        }

        .user-type-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .user-type-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .features-list li {
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .features-list li::before {
            content: '•';
            color: #ff6b35;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
            .registration-container {
                padding: 1rem;
            }

            .registration-card {
                padding: 2.5rem 1.5rem;
                margin: 0;
            }

            .registration-header {
                margin-bottom: 2.5rem;
            }

            .registration-title {
                font-size: 2rem;
            }

            .registration-subtitle {
                font-size: 1rem;
            }

            .user-types {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .user-type-card {
                padding: 2rem 1.5rem;
            }
        }
    