/* Social Icons Styling */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
}

.social-icons li {
    margin: 0 8px 8px 0;
    display: inline-block;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #b36bb3 ;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #b36bb3 ;
}

/* SVG icon styling */
.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.social-icons li a:hover svg {
    fill: #b36bb3 ;
}

/* Container styling */
.social-icons-container {
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
    }
    
    .social-icons li {
        margin: 0 6px 6px 0;
    }
    
    .social-icons li a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons svg {
        width: 16px;
        height: 16px;
    }
}
