/* Social Icons Fix */
.social-icons-wrapper {
    display: flex;
    align-items: center;
}

.social-icons-wrapper a {
    text-decoration: none;
    margin-right: 10px;
}

.social-icons-wrapper .icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #20447f;
}

.social-icons-wrapper .icon-wrapper i {
    color: #fff !important;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}

/* Font Awesome specific fixes */
.social-icons-wrapper .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.social-icons-wrapper .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* Specific icon styles */
.social-icons-wrapper .facebook.icon-wrapper {
    background-color: #3b5998;
}

.social-icons-wrapper .linkedin.icon-wrapper {
    background-color: #0077b5;
}

.social-icons-wrapper .twitter.icon-wrapper {
    background-color: #1da1f2;
}

.social-icons-wrapper .newsletter.icon-wrapper {
    background-color: #ff6600;
}

.social-icons-wrapper .instagram.icon-wrapper {
    background-color: #c13584;
}