    .construction {
        background-image: url('landingpage.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        min-height: 300px;
        padding: 1.5rem;
        text-align: center;
    }

    .logo {
        width: 150px;
        height: 70px;
        background-color:#f4f4f4;
        display: block;
        margin: 0 auto 10px auto;
    }


    body {
        font-family: 'Segoe UI', sans-serif;
        background: #f4f4f4;
        color: #333;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .container {
        padding: 10px 10px;
    }
    h1 {
        margin-top: 0px;
        color: #0c3e7b;
    }
    h1 span {
        color: #0070c0;
    }
    p {
        font-size: 18px;
        margin: 10px 0;
    }
    img {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
    }
    .buttons {
        margin: 10px 0;
    }
    a.cta {
        display: inline-block;
        padding: 12px 24px;
        margin: 5px;
        background: #0a111a;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
    }
    a.cta:hover {
        background: #3c3c3c;
    }
    a.cta.secondary {
        background: #555;
    }
    a.cta.secondary:hover {
        background: #333;
    }
    footer {
        margin-top: 20px;
        font-size: 14px;
        color: #666;
    }
