
.construction-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    min-height: 80vh;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #001f3f;
}

.construction-content {
    max-width: 600px;
    animation: fadeIn 1.2s ease-out;
}

.construction-img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
}

.construction-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.construction-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
