#social {
    background-color: transparent;
    padding: 40px;
    text-align: center;
}

.social-box {
    max-width: 800px;
    margin: 0 auto;
}

.social-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.social-box p {
    font-size: 16px;
    margin-bottom: 30px;
}

.social-box ul {
    list-style-type: none;
    padding: 0;
}

.social-box ul li {
    display: inline-block;
    margin: 10px;
}

.social-box ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.social-box ul li a:hover {
    background-color: #0077b6;
    color: white;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.social-box ul li a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}