  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #002e5e;
            --secondary-color: #ffa917;
            --bg-light: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --success-color: #28a745;
            --success-light: #d4edda;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: #ffffff;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       

        /*.logo::before {*/
        /*    content: "🎓";*/
        /*    font-size: 2rem;*/
        /*}*/

        .btn {
            background: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background: #e69515;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 169, 23, 0.4);
        }

        .btn-primary {
            background: var(--primary-color);
        }

        .btn-primary:hover {
            background: #001d3d;
            box-shadow: 0 5px 15px rgba(0, 46, 94, 0.4);
        }

        .btn-success {
            background: var(--success-color);
        }

        .btn-success:hover {
            background: #218838;
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Main Content */
        .main-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 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);
        }

        .next-steps {
            background: linear-gradient(135deg, var(--primary-color), #001d3d);
            color: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .next-steps h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .steps-list {
            list-style: none;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .step-number {
            background: var(--secondary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .step-content p {
            opacity: 0.9;
            line-height: 1.6;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 3rem 0;
            animation: fadeInUp 1s ease 1.2s both;
        }

        .contact-info {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            animation: fadeInUp 1s ease 1.5s both;
        }

        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 1.5rem;
        }

        .social-proof {
            background: white;
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            animation: fadeInUp 1s ease 1.8s both;
        }

        .social-proof h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--secondary-color);
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

      

        /* 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) {
            .header-container {
                padding: 1rem;
            }

           
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .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;
            }

            .contact-methods {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .detail-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            
        }

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

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

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .steps-list li {
                flex-direction: column;
                text-align: center;
            }
            .logo img {
            max-width: 150px;
        }
        }