* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #D7AB10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
            font-family: 'Roboto', sans-serif;
        }

        .logo-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
        }

        .logo {
            max-width: 400px;
            width: 100%;
        }

        footer {
            background-color: #000000;
            width: 100%;
            padding: 20px 0;
            text-align: center;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info {
            color: #ffffff;
            font-size: 42px;
        }

        .contact-label {
            font-weight: bold;
            font-size: 36px;
            display: block;
            margin-bottom: 5px;
        }

        footer a {
            color: #ffffff;
            text-decoration: none;
            font-size: 42px;
        }

        footer a:hover {
            color: #D7AB10;
        }

        @media (max-width: 768px) {
            footer {
                min-height: auto;
                padding: 30px 0;
            }
        }