.hero-section {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 60px;
    }
}

.rolling-banner {
    overflow: hidden;
    position: relative;
}

.slider {
    height: 180px;
    display: flex;
    align-items: center;
}

.slide-track {
    display: flex;
    width: calc(300px * 12); /* 6개 x 2배 */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 300px;
    margin-right: 20px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
