        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;  
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navbar */
        .navbar {
            background: #2c3e50;
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            padding-top: 10px;
            width: 170px;
        }

        /* Main Content */
        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .splash-container {
            background: white;
            border-radius: 12px;
            padding: 3rem 3rem 1rem;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            text-align: center;
        }

        .splash-heading {
            font-size: 30px;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .splash-paragraph {
            font-size: 1.125rem;
            color: #555;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;margin-bottom: 15px
        }

        .btn {
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            min-width: 150px;
        }

        .btn-primary {
            background: #667eea;
            color: white;
        }

        .btn-primary:hover {
            background: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #333;
            border: 2px solid #dee2e6;
        }

        .btn-secondary:hover {
            background: #e9ecef;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Footer */

        /* Responsive Design */
        @media (max-width: 768px) {
            .splash-container {
                padding: 2rem 2rem 0.5rem;
            }

            .splash-heading {
                font-size: 2rem;
            }

            .splash-paragraph {
                font-size: 1rem;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 1rem;
            }

            .splash-container {
                padding: 1.5rem 1.5rem 0.5rem;
            }

            .splash-heading {
                font-size: 1.75rem;
            }
        }

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    padding: 20px;
    border-top: 1px solid #ccc;
    background: #2c3e50
}

.footer-left, .footer-right {
    display: flex;
    gap: 20px;
}

@media (max-width: 820px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        display: block;
        text-align: center;
    }

    .footer-left a, .footer-right a {
        display: block;
        margin: 5px 0;
    }
}

.footer-right {
    margin-top: 2px;
}

.footer-links a {
    color: #fff;
    background-image: linear-gradient(#28a745, #28a745);
    background-size: 0 2px;
    background-position-y: 100%;
    background-position-x: 0;
    background-repeat: no-repeat;
    transition: background-size .4s ease-in-out;
    text-decoration: none;
    padding-bottom: 5px;
}

.footer-links a:hover, .footer-links a:focus {
    color: #28a745;
    background-size: 100% 1px;
}