        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff;
            display: flex;
        }

        #logo {
            width: 50%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #logo img {
            width: 50%;
            height: auto;
            animation: zoomInOut 8s infinite alternate;
        }

        @keyframes zoomInOut {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        #content {
            width: 50%;
            padding: 2em;
            box-sizing: border-box;
        }

        #announcement,
        #benefits {
            margin-bottom: 2em;
        }

        h1, h2, p {
            color: #fff;
        }

        #contact-info {
            margin-top: 2em;
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1em;
            position: fixed;
            bottom: 0;
            width: 100%;
        }