/* Footer Styles */
.footer {
    background-color: #e6e6e6;
    position: sticky;
    padding: 20px;
    color: #333;
    text-align: center;
    width: 100%;
    position: relative;
}

.contact__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.contact__img {
    width: 24px;
    height: 24px;
    filter: invert(30%);
}

.contact__text {
    font-size: 16px;
    color: #333;
}

.contact__soc {
    display: flex;
    gap: 10px;
}

.contact__link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.contact__link:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact__box {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
a {
    color: inherit; /* Inherits the color of the parent element */
    text-decoration: none; /* Removes the underline */
}
