.footer {
    background: #f8f9fa;
    color: #333;
    font-size: 16px;
}

.footer-brand {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
}

.footer h5 {
    color: #000;
    margin-bottom: 15px;
}

.footer-link {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.footer-link:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    color: #fff;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon:hover {
    transform: scale(1.1);
}