        /* Footer */
        footer {
            background:  #132a24;
            color: #ccc;
            padding: 1rem 2rem 1rem;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-share {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-share span {
            font-size: 0.8rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .social-icons {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .social-icons a {
            color:  #ffd700;
            font-size: 0.8rem;
            transition:  all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-icons a:hover {
            color: #fff;
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-3px);
        }

        .footer-copyright {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
        }

        .copyright-text {
            font-size: 0.8rem;
            color: #aaa;
        }

        .copyright-text strong {
            color:  #ffd700;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.8rem;
            transition:  all 0.3s ease;
        }

        .footer-links a:hover {
            color:  #ffd700;
        }

        .footer-links span {
            color: rgba(255, 255, 255, 0.3);
        }