* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

.accreditation-banner {
    width: 100%;
    height: 50px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.banner-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.banner-track:hover {
    animation-play-state: paused;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

.banner-text {
    font-size: 14px;
    font-weight: 500;
    color: #132E55;
    letter-spacing: 0.3px;
}

.banner-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.logo-regione {
    height: 28px;
}

.logo-iul {
    height: 32px;
}

.banner-separator {
    font-size: 18px;
    color: #C9A55A;
    font-weight: 700;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .accreditation-banner {
        height: 45px;
    }

    .banner-content {
        gap: 12px;
        padding: 0 16px;
    }

    .banner-text {
        font-size: 13px;
    }

    .banner-logo {
        height: 28px;
    }

    .logo-regione {
        height: 24px;
    }

    .logo-iul {
        height: 28px;
    }

    .banner-separator {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .accreditation-banner {
        height: 40px;
    }

    .banner-content {
        gap: 10px;
        padding: 0 12px;
    }

    .banner-text {
        font-size: 12px;
    }

    .banner-logo {
        height: 24px;
    }

    .logo-regione {
        height: 22px;
    }

    .logo-iul {
        height: 24px;
    }

    .banner-separator {
        font-size: 14px;
    }
}
