        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #422C48;
            color: #E6E4DA;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
        }

        .construction-image {
            max-width: 250px;
            width: 100%;
            height: auto;
            margin-bottom: 2rem;
        }

        h1 {
            font-size: clamp(1.0rem, 4vw, 3.0rem);
            font-weight: 500;
            line-height: 1.2;
        }

        footer {
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-logo {
            max-width: 180px;
            width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .construction-image {
                max-width: 320px;
            }

            .footer-logo {
                max-width: 140px;
            }
        }