/* Top Bar */
.top-bar {
    background: #002d5c;
    padding: 8px 0;
    border-bottom: 2px solid #003d7a;
}

/* Header con Loghi */
.main-header {
    background: #0066CC;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-title {
    color: white;
}

.header-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.header-title p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logos img {
    height: 72px;
    width: auto;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

@media (max-width: 768px) {
    .header-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    .header-logos img {
        height: 54px;
        background: none;
        padding: 0;
        border-radius: 0;
        border: none;
    }
}
