body {
    background: linear-gradient(90deg, rgb(0, 117, 201) 0%, rgb(0, 117, 201) 0.24%, rgb(0, 55, 129) 100%);
}

[data-section="insurance-choice"] {
    padding: 0;
}

.insurance-choice .center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 0 16px;
    box-sizing: border-box;
}

.insurance-choice img {
    height: 70px;
    object-fit: cover;
    object-position: center left;
    margin: 0 auto;
    margin-bottom: 70px;
    width: auto;
    margin-left: 20px;
    filter: brightness(0) invert(1);
    max-width: 90vw;
}

@media (max-width: 600px) {
    .insurance-choice img {
        height: 48px;
        margin-bottom: 40px;
        margin-left: 0;
        object-fit: contain;
    }
}

/* --- Simplified Animation Styles --- */

/* Title (logo) animation: simple fade in and slide down */
@keyframes slideDownSimple {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.insurance-choice .phrase {
    opacity: 0;
    animation: slideDownSimple 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
    max-width: 90vw;
}

@media (max-width: 600px) {
    .insurance-choice .phrase {
        font-size: 1.2rem;
        padding: 0 8px;
    }
}

/* Buttons animation: simple fade in and slide from sides */
@keyframes slideInLeftSimple {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightSimple {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.insurance-choice .side-by-side {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .insurance-choice .side-by-side {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .insurance-choice .side-by-side {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
}

.insurance-choice .side-by-side a {
    padding: 15px 0;
    margin: 0 30px;
    margin-top: 25px;
    width: 262px;
    color: #0075c9;
    border: 2px solid #e0e4e9;
    position: relative;
    align-items: center;
    justify-content: center;
    padding-right: 32px;
    padding-left: 32px;
    font-size: 17px;
    background-color: white;
    border-radius: 4px;
    outline: none;
    transition:
        box-shadow .3s cubic-bezier(0.23, 1, 0.32, 1),
        transform .15s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    text-decoration: none;
    opacity: 0;
    box-sizing: border-box;
    max-width: 90vw;
}

@media (max-width: 900px) {
    .insurance-choice .side-by-side a {
        width: 200px;
        font-size: 15px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 600px) {
    .insurance-choice .side-by-side a {
        width: 100%;
        min-width: 0;
        max-width: 350px;
        margin: 0;
        margin-top: 10px;
        font-size: 1rem;
        padding: 12px 8px;
        white-space: normal;
    }
}

/* Animate left button (Life Insurance) */
.insurance-choice .side-by-side a.life {
    animation: slideInLeftSimple 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

/* Animate right button (General Insurance) */
.insurance-choice .side-by-side a.general {
    animation: slideInRightSimple 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

/* Add a subtle hover effect for buttons */
.insurance-choice .side-by-side a:hover,
.insurance-choice .side-by-side a:focus {
    box-shadow: 0 8px 24px 0 rgba(0, 117, 201, 0.12), 0 1.5px 4px 0 rgba(0, 0, 0, 0.08);
    transform: scale(1.04);
    z-index: 1;
}

@media (hover: none) and (pointer: coarse) {

    .insurance-choice .side-by-side a:hover,
    .insurance-choice .side-by-side a:focus {
        /* Remove scale on touch devices to avoid accidental zoom */
        transform: none;
    }
}

@media (max-width: 768px) {
    .insurance-choice .center-screen {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 45%;
        padding: 0;
        min-height: auto;
    }

    .insurance-choice {
        height: 90vh;
    }
}

.section-contactez-un-expert,
.site-header,
.sd-header-main,
.footer,
.sd-footer__bottom {
    display: none !important;
}