footer{
    display:grid;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
        .social-container {
            display:flex;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            justify-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .social-container h3 {
            margin-bottom: 20px;
            color: #333;
        }

        /* Essential Flexbox Layout for Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        /* Base Styling for each Link and Icon Wrapper */
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: black;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Hover Transitions with Official Brand Colors */
        .social-icon.youtube:hover {
            background-color: black;
            color: white;
            transform: translateY(-3px);
        }

        .social-icon.tiktok:hover {
            background-color: black;
            color: white;
            transform: translateY(-3px);
        }

        .social-icon.instagram:hover {
            background-color: black;
            color: white;
            transform: translateY(-3px);
        }
