* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.container {
    width: 80vw;
    height: 90vh;
    display: flex;
    align-items: center;
    gap: 5%;
    background: white;
    padding: 40px;
}

.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.button:hover {
    opacity: 0.8;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: min(40vw, 70vh);
    height: min(40vw, 70vh);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .image-section {
        display: none;
    }

    .container {
        width: 90vw;
        height: auto;
        padding: 25px;
    }

    .text-section h1 {
        font-size: 2rem;
    }
}
