  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            color: #000;
        }

        /* Header */
        header {
            background: #094824;
            min-height: 96px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Main */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 64px;
            text-align: center;
            min-height: 400px;
            height: auto;
        }

        main h1 {
            color: #094824;
            font-size: 40px;
            font-weight: 700;
            line-height: normal;
            margin-bottom: 32px;
        }

        main p {
            max-width: 610px;
            color: #000;
            text-align: center;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
        }

        /* Footer */
        footer {
            background: #E0FFED;
            padding: 27px 10px;
            text-align: center;
        }

        footer a {
            color: #838383;
            font-size: 14px;
            font-weight: 600;
            line-height: normal;
            text-decoration: none;
            margin: 0 6px;
            white-space: nowrap;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            main {
                padding: 40px 16px 0;
            }

            header {
                min-height: 70px;
            }

            header img {
                height: 30px;
            }

            main h1 {
                font-size: 28px;
                margin-bottom: 24px;
            }

            main p {
                font-size: 15px;
                line-height: 20px;
            }

            footer {
                padding: 20px 10px;

            }

            footer a {
                font-size: 12px;
            }
        }