* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #274873;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 30px;
}

.content {
    max-width: 1200px;
    width: 100%;
    text-align: left;
    background-color: #f2f0d5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 400px;
    height: auto;
}

.tagline {
    font-size: 1.8rem;
    margin: 0;
    color: #274873;
    line-height: 1.4;
    text-align: center;
    display: block;
    width: 100%;
}

.vertical-divider {
    width: 2px;
    height: 400px;
    background-color: #2c3e50;
    opacity: 0.3;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.gen-z-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.text-box p {
    font-size: 1.1rem;
    color: #555;
}

.coming-soon {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 300;
    letter-spacing: 1px;
}

.copyright {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.5;
    margin-top: auto;
    padding-bottom: 10px;
}

.copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }

    .header-section {
        flex-direction: column;
        gap: 20px;
    }

    .left-section {
        align-items: center;
        text-align: center;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .vertical-divider {
        width: 80%;
        height: 2px;
        margin: 10px 0;
    }

    .right-section {
        align-items: center;
        text-align: center;
    }

    .logo img {
        max-width: 300px;
    }

    .coming-soon {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .gen-z-image {
        max-width: 80%;
        margin-bottom: 15px;
    }

    .copyright {
        font-size: 0.8rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 15px;
    }

    .header-section {
        gap: 15px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .gen-z-image {
        max-width: 90%;
    }

    .logo img {
        max-width: 250px;
    }

    .coming-soon {
        font-size: 1rem;
        margin-top: 15px;
    }

    .copyright {
        font-size: 0.75rem;
        margin-top: 10px;
    }
} 