    /* Footer 스타일 */
.site-footer {
    background-color: #383838;
    color: #fff;
    padding: 30px 5%;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-info p {
    margin: 5px 0;
    line-height: 1.6;
}

.footer-info a {
    color: #ff8c00;
    text-decoration: underline;
}

.footer-sns a {
    display: inline-block;
    margin-left: 10px;
}

.footer-sns img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* 아이콘 흰색화 */
    transition: opacity 0.2s ease;
}

.footer-sns img:hover {
    opacity: 0.7;
}
