        .confirmation-container {
 
    background: #f1f1f1;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 15px 35px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 50px auto;

        }

        .celebration-stars {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            height: 100px;
            pointer-events: none;
        }

        .star {
            position: absolute;
            color: #f39c12;
            font-size: 24px;
            animation: sparkle 2s ease-in-out infinite;
            opacity: 0;
        }

        .star:nth-child(1) { left: 10%; top: 20px; animation-delay: 0s; }
        .star:nth-child(2) { left: 25%; top: 35px; animation-delay: 0.3s; }
        .star:nth-child(3) { left: 45%; top: 15px; animation-delay: 0.6s; }
        .star:nth-child(4) { left: 65%; top: 40px; animation-delay: 0.9s; }
        .star:nth-child(5) { left: 80%; top: 25px; animation-delay: 1.2s; }
        .star:nth-child(6) { right: 10%; top: 10px; animation-delay: 1.5s; }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
            50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #00b894, #00cec9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: bounceIn 1s ease-out;
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        h1 {
            color: #2d3436;
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .subtitle {
            color: #636e72;
            font-size: 1.2rem;
            margin-bottom: 35px;
            animation: slideInUp 0.8s ease-out 0.5s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote-info {
            background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #6c5ce7;
            animation: slideInUp 0.8s ease-out 0.7s both;
        }

        .quote-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #6c5ce7;
            margin-bottom: 10px;
        }

        .quote-details {
            color: #2d3436;
            line-height: 1.6;
        }

        .next-steps {
            background: #fff;
            border: 2px dashed #00b894;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            animation: slideInUp 0.8s ease-out 0.9s both;
        }

        .next-steps h3 {
            color: #00b894;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .next-steps ul {
            list-style: none;
            text-align: left;
        }

        .next-steps li {
            padding: 8px 0;
            color: #2d3436;
            position: relative;
            padding-left: 25px;
        }

        .next-steps li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00b894;
            font-weight: bold;
        }

        .contact-info {
            background: linear-gradient(45deg, #fd79a8, #fdcb6e);
            color: white;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            animation: slideInUp 0.8s ease-out 1.1s both;
        }

        .contact-info h3 {
            margin-bottom: 15px;
        }

        .buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
            animation: slideInUp 0.8s ease-out 1.3s both;
        }

        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            color: white;
        }

        .btn-secondary {
            background: white;
            color: #6c5ce7;
            border: 2px solid #6c5ce7;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape2 {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape3 {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .confirmation-container {
                padding: 30px 20px;
                margin: 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }