body {
    background-color: #fff;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.construction-message {
    background-color: #000;
    font-size: 6rem;
    font-weight: bold;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Roboto', Arial, sans-serif;
}

.columns-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    background: #fff;
    min-height: 400px; /* Ensures enough height for vertical centering */
}

.column {
    background: #fff;
    color: #000;
    flex: 1;
    padding: 32px 24px;
    margin: 0 12px;
    border-radius: 0;
    font-size: 1.3rem;
    font-family: 'Roboto', Arial, sans-serif; /* Changed font family */
    box-shadow: none;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center; /* Vertically center content */
}

.column p {
    margin-left: 60px;
    margin-right: 40px;
    text-align: left;
    font-size: 2.5rem; /* Increased font size */
}

.column img {
    align-self: center;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .columns-container {
        flex-direction: column;
        min-height: unset;
    }
    .column {
        margin: 12px 0;
        padding: 24px 12px;
        font-size: 1.1rem;
    }
    .construction-message {
        font-size: 2.5rem;
        margin-top: 32px;
    }
    .column p {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 1.2rem;
    }
}