/* Footer */
        footer {
            background-color: #FF6B8B;
            color: white;
            padding: 40px 5%;
            text-align: center;
        }

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

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-family: 'Comic Sans MS', cursive;
        }

        .footer-logo i {
            margin-right: 8px;
            color: white;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Comic Sans MS', cursive;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #FFD1DC;
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-icon {
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
            background: #FF6B8B;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* border: 2px solid white; */
        }

        .social-icon:hover {
            color: #FF6B8B;
            background: white;
            transform: scale(1.1);
        }

        .copyright {
            color: #FFD1DC;
            font-size: 0.9rem;
            max-width: 800px;
            margin: 0 auto;
        }