        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #00343D;
        }

        .footer-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 52, 61, 0.1), rgba(204, 78, 0, 0.1));
            border-radius: 20px;
            transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
        }

        .footer-links a:hover {
            color: #00343D;
            transform: translateY(-2px);
        }

        .footer-links a:hover::before {
            left: 0;
        }

        .footer-links a.active {
            color: #00343D;
            background: linear-gradient(135deg, rgba(0, 52, 61, 0.1), rgba(204, 78, 0, 0.1));
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
        }