/* Gardez votre CSS actuel ici, il est très bien */
:root {
    --bg: #f4f1e8;
    --dark: #1a1a1a;
    --accent: #4CAF50;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    background: var(--bg);
}

.hidden {
    display: none !important;
}

.split-view {
    display: flex;
    height: 92vh;
    flex-direction: row;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 10%;
    position: relative;
}

.image-column {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1000&auto=format&fit=crop') center/cover;
}

@media (max-width: 768px) {
    .split-view {
        flex-direction: column;
    }

    .image-column {
        display: none;
    }

    .form-column {
        padding: 20px 5%;
    }
}

.full-screen {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.q-title {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 20px;
}

.q-title span {
    color: red;
}

.opt-card {
    width: 100%;
    text-align: left;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
    background: white;
    cursor: pointer;
}

.opt-card.selected {
    border: 2px solid var(--dark);
    background: #eee;
}

.field-input,
.field-select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    outline: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.nav-bar {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.btn-nav {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--dark);
    cursor: pointer;
}

.btn-nav.dark {
    background: var(--dark);
    color: white;
}

.btn-main {
    background: var(--dark);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.timer {
    padding-top: 10px;
}

#consent_check {
    width: auto;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #aeea00, #004d40);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}