.maintenance-container {
    height: 100vh;
    padding: 20px;
    text-align: center;
    padding-top: 15vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.maintenance-title {
    font-weight: 400;
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 10px;
    margin-bottom: 20vh;
}

.rainbow-bar {
    margin-bottom: 40px;
    height: 10px;
}

.actions-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 111, 49, 0.2);
}

.contact-info {
    font-weight: 400;
    color: var(--secondary-color);
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #4A4A4A;
}

.email-link {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
}

.email-link:hover {
    text-decoration: underline;
}

@media (max-height: 600px) {
    .maintenance-title {
        margin-bottom: 10vh;
    }
}