.thanks-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .thanks-card {
            max-width: 600px;
            width: 100%;
            background: #fff;
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        }
        
        .thanks-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease-out;
        }
        
        .thanks-icon svg {
            width: 50px;
            height: 50px;
            color: #fff;
        }
        
        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .thanks-title {
            font-size: 2rem;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 1rem;
        }
        
        .thanks-text {
            font-size: 1.125rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .thanks-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
            text-align: left;
        }
        
        .thanks-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 12px;
        }
        
        .thanks-feature__icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0066cc;
            border-radius: 10px;
            color: #fff;
        }
        
        .thanks-feature__text {
            font-size: 0.9375rem;
            color: #475569;
        }
        
        .thanks-feature__text strong {
            color: #0a1628;
        }
        
        .thanks-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .thanks-actions .btn {
            width: 100%;
        }
        
        .thanks-contact {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .thanks-contact__title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .thanks-contact__links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .thanks-contact__link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #0066cc;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .thanks-contact__link:hover {
            color: #0052a3;
        }
        
        @media (max-width: 640px) {
            .thanks-card {
                padding: 2rem;
            }
            
            .thanks-title {
                font-size: 1.5rem;
            }
            
            .thanks-text {
                font-size: 1rem;
            }
        }