body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f8fa;
    color: #222;
}

header {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08);
}

.brand {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 2.2rem;
}
.mauri {
    font-family: inherit;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 6px #1e3c72;
}
.subtitle {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #e0e6f6;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(30,60,114,0.10);
    padding: 1.5rem 1rem;
    position: relative;
}
.carousel-images {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0.75rem;
    background: #f0f4fa;
    outline: none;
    scrollbar-width: thin;
    scrollbar-color: #2a5298 #f0f4fa;
    box-sizing: border-box;
}
.carousel-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.carousel-img {
    min-width: 300px;
    min-height: 300px;
    width: 300px;
    height: 300px;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(30,60,114,0.10);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    object-fit: contain;
    flex: 0 0 auto;
    margin: 0;
}
.carousel-img:focus, .carousel-img:hover {
    outline: 2px solid #ffd700;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(30,60,114,0.18);
}
.carousel-btn {
    background: #2a5298;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 1rem;
    transition: background 0.2s;
}
.carousel-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
.carousel-btn:hover {
    background: #1e3c72;
}

@media (max-width: 900px) {
    .carousel-images {
        width: 100vw;
        max-width: 100vw;
        height: 40vw;
        min-height: 120px;
    }
    .carousel-img {
        min-width: 120px;
        min-height: 120px;
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 500px) {
    .carousel {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .carousel-images {
        width: 100vw;
        height: 32vw;
        min-height: 80px;
        max-width: 100vw;
    }
    .carousel-img {
        min-width: 80px;
        min-height: 80px;
        width: 80px;
        height: 80px;
    }
    .carousel-btn {
        margin: 1rem 0 0 0;
    }
}
