body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}
.container {
    display: flex;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    align-items: center;
    max-width: 800px;
    width: 90%;
}
.image-side {
    flex: 0 0 40%;
    padding-right: 40px;
}
.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}
.text-side {
    flex: 1;
}
h1 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 2.5rem;
}
p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}
p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .image-side {
        padding-right: 0;
        padding-bottom: 20px;
        flex: 0 0 auto;
        width: 200px; /* Limit image size on mobile */
    }
}