/* Social Follow Widget Fixed Styles */
.social-follow-box {
    background-color: #f5faed;
    border: 1px solid #cde0b6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.social-title {
    font-size: 18px;
    font-weight: bold;
    color: #13466b;
    margin-bottom: 15px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #cde0b6;
    border-radius: 50%;
    color: #13466b;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #2c8f1b;
    color: #fff;
    border-color: #2c8f1b;
}
