body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; background: #f5f7fb; color: #0f172a; min-height: 100%; overflow-x: hidden; }
h1 { margin-bottom: 1rem; }
a { color: #2563eb; }

.success-banner {
    background: linear-gradient(135deg, rgba(22, 223, 241, 0.15), rgba(6, 23, 43, 0.12));
    border: 1px solid rgba(6, 23, 43, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 12px 24px rgba(6, 23, 43, 0.08);
}

.success-eyebrow {
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: #0f3156;
    font-weight: 700;
}

.success-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #06172B;
}

.success-copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #0f172a;
}

.bg-muzino {
    padding: 0;
    position: relative;
    background: transparent;
}

.bg-muzino::before {
    content: '';
    position: fixed;
    inset: 0;
        background:
            linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
            url('/img/muzino-bg-landscape.jpg') center center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
}

@media (orientation: portrait) {
    .bg-muzino::before {
        background:
            linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
            url('/img/muzino-bg-portrait.jpg') center center / cover no-repeat;
    }
}

.info-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px 20px 60px;
    box-sizing: border-box;
}

.info-page h1 {
    font-size: 32px;
    margin: 0 0 16px;
    color: #06172B;
}

.info-page h2 {
    margin: 18px 0 8px;
    font-size: 20px;
    color: #06172B;
}

.info-page p,
.info-page li {
    font-size: 16px;
    line-height: 1.6;
    color: #0f172a;
}

.info-page ul,
.info-page ol {
    padding-left: 20px;
    margin: 0 0 12px;
}



