   .under-construction {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 40px 20px;
        }

        .construction-content {
            text-align: center;
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 600px;
        }

        .construction-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        .construction-content h2 {
            font-size: 2.5em;
            color: #1E3A8A;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .construction-content p {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 30px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #DC143C, #1E3A8A);
            width: 65%;
            border-radius: 10px;
            animation: loading 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes loading {
            0% {
                width: 0%;
            }
            50% {
                width: 75%;
            }
            100% {
                width: 65%;
            }
        }

        @media (max-width: 768px) {
            .construction-content {
                padding: 40px 25px;
            }

            .construction-content h2 {
                font-size: 2em;
            }

            .construction-icon {
                font-size: 60px;
            }
        }