body {
    font-family: 'Barlow Semi Condensed', Arial, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}
.maintenance-hero {
    background: linear-gradient(90deg, #f3f7fa 60%, #fff 100%);
    padding: 0;
}
.maintenance-hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5em 1em 2.5em 1em;
    gap: 2.5em;
}
.maintenance-hero-content {
    flex: 2 1 380px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.maintenance-hero-content h1 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #6a11cb;
    margin-bottom: 0.5em;
}
.maintenance-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1124;
    margin-bottom: 1.1em;
}
.maintenance-hero-desc {
    font-size: 1.13em;
    color: #3a4664;
    margin-bottom: 1.5em;
}
.hero-actions {
    display: flex;
    gap: 1.2em;
    margin-bottom: 1.2em;
}
.btn {
    display: inline-block;
    padding: 0.8em 2em;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.08em;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-primary {
    background: #6a11cb;
    color: #fff;
}
.btn-primary:hover {
    background: #4e0e9e;
}
.btn-secondary {
    background: #fff7f2;
    color: #ff7c2b;
    border: 1.5px solid #ff7c2b;
}
.btn-secondary:hover {
    background: #ff7c2b;
    color: #fff;
}
.maintenance-hero-focus {
    font-size: 1.08em;
    color: #0a1124;
    margin-bottom: 0;
}
.maintenance-hero-video {
    flex: 1 1 340px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-block {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(106,17,203,0.10);
    padding: 1.2em 1.2em 0.7em 1.2em;
}
@media (max-width: 900px) {
    .maintenance-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2em;
    }
    .maintenance-hero-video {
        width: 100%;
        justify-content: flex-start;
    }
}
