
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
    background-color: #fdf4eb;
    color: #000;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-column img {
    max-width: 100%;
    height: auto;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    min-width: 300px;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #1DA851;
}

.button img {
    width: 24px;
    height: 24px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

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

    h1 {
        font-size: 1.8rem;
    }

    .button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
