body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #ffffff 0%, #f3f4f6 100%);
    color: #1f2937;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.text-content {
    text-align: left;
    padding-left: 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #1e40af;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
    background: linear-gradient(90deg, #1e3a8a, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.image-content {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

footer {
    text-align: center;
    margin-top: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .text-content {
        text-align: center;
        padding-left: 0;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .image-content {
        height: 300px;
    }
}