main {

    .page-title,
    .page-subtitle {
        display: block;
        text-align: left;
    }
}

.welcome-image {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-image-desktop {
    display: none;
}

.question {
    color: var(--primary);
    font-size: var(--text-l);
    font-weight: 600;
    margin-bottom: 10px;
}

.description {
    line-height: 1.5;
    margin-bottom: 25px;
}

.buttons-wrapper {
    display: flex;
    margin: 2rem 0;
    gap: 15px;
}

.btn {
    width: 100%;
}

.terms-text {
    text-align: center;
    margin-top: 2rem;
}

footer {
    display: none;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {

    .page-title {
        font-size: 48px;
    }

    .container {
        max-width: 1400px;
    }

    .content {
        .container {
            display: grid;
            grid-template-columns: 54fr 76fr;
            justify-content: space-between;
            align-items: stretch;
            gap: 2rem;
        }
    }

    .desktop-left {
        max-width: 540px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .welcome-image {
        display: none;
    }

    .welcome-image-desktop {
        display: block;
        object-fit: cover;
        width: 100%;
        max-width: 765px;
        height: auto;
        border-radius: 15px;
    }

    .terms-text {
        display: none;
    }

    .buttons-wrapper {
        margin-bottom: 0;
    }
}