  /* Main Content */

         :root {
            --primary-color: #002e5e;
            --secondary-color: #ff6500;
            --bg-light: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --success-color: #28a745;
            --success-light: #d4edda;
        }
        .main-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 140px 2rem;
            min-height: calc(100vh - 200px);
            text-align: center;
        }

        .success-icon {
            font-size: 5rem;
            color: var(--success-color);
            margin-bottom: 2rem;
            animation: bounce 2s infinite;
        }

        .thank-you-title {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
            animation: fadeInUp 1s ease;
        }

        .thank-you-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .confirmation-box {
            background: var(--success-light);
            border: 2px solid var(--success-color);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .confirmation-box h3 {
            color: var(--success-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .confirmation-details {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--primary-color);
        }

        .detail-value {
            color: var(--text-dark);
        }

       

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

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

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            

            .main-content {
                padding: 60px 1rem;
            }

            .thank-you-title {
                font-size: 2.5rem;
            }

            .success-icon {
                font-size: 4rem;
            }

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .action-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

          
        }

        @media (max-width: 480px) {
            .thank-you-title {
                font-size: 2rem;
            }

            .success-icon {
                font-size: 3rem;
            }

           
        }