        footer {
            text-align: center;
            color: #888; 
            font-size: 13px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-weight: 400 !important; 
            margin-top: 60px;
            padding-bottom: 20px;
            text-shadow: none !important; 
            opacity: 0.85;
            letter-spacing: 0.5px;
        }

        :root {
            --primary: #6EC3F7;
            --text: rgba(255,255,255,0.9);
            --anim-duration: 0.6s;
            --cloudflare-orange: #F38020;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(to bottom, #F5A9B8 0%, #d2b7cf 30%, #A8E0FD 75%, #f0f4f8 100%);
            font-family: 'Arial Rounded MT Bold', sans-serif;
            position: relative;
            animation: fadeIn 0.8s ease-out forwards;
        }

        html {
            overflow-y: scroll;
        }
        html::-webkit-scrollbar {
            width: 0px;
            background: transparent;
        }
        html {
            scrollbar-width: none;
        }
        html {
            -ms-overflow-style: none;
        }

        .nav-bar {
            background: transparent;
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100vw;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 10;
        }

        .logo {
            padding-left: 30px;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .cloudflare-text {
            color: var(--cloudflare-orange);
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            padding-right: 30px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.3rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #f0f0f0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .main-content {
            padding: 12vmin 4vmin 6rem;
            padding-top: 80px;
        }

        .content-section {
            display: flex;
            gap: 4vmin;
            align-items: flex-start;
            max-width: 1200px;
            margin: 0 0 0 4vmin;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp var(--anim-duration) ease-out forwards;
            animation-delay: 0.6s;
        }

        .content-section img {
            max-width: 40%;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            height: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: itemAppear 0.5s ease-out forwards;
            animation-delay: 0.9s;
        }

        .text-content {
            flex: 1;
            color: var(--text);
            line-height: 1.6;
            font-size: 1.1em;
            opacity: 0;
            transform: translateY(30px);
            animation: itemAppear 0.5s ease-out forwards;
            animation-delay: 1.2s;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

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

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

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(110, 195, 247, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(110, 195, 247, 0); }
            100% { box-shadow: 0 0 0 0 rgba(110, 195, 247, 0); }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 15vmin 3vmin 6rem;
                padding-top: 80px;
            }
            .content-section {
                flex-direction: column;
                margin-left: 3vmin;
            }
            .content-section img {
                max-width: 100%;
            }
            .logo {
                padding-left: 15px;
                font-size: 1.1rem;
            }
            .nav-link {
                font-size: 1.1rem;
            }
        }