    html,
    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    sup,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
        display: block;
    }
    
    body {
        line-height: 1;
    }
    /*     
    ol,
    ul {
        list-style: none;
    } */
    
    blockquote,
    q {
        quotes: none;
    }
    
    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }
    
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    
    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }
    
    body {
        font-family: "Poppins", sans-serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) no-repeat center center/cover;
        height: 100%;
        overscroll-behavior-x: auto;
    }
    /* p {
        font-size: 1.2em;
        margin-bottom: 15px;
    } */
    
     :root {
        --blue-color: #0075EB;
        --white-color: #FFFFFF;
        --black-color: #1B1B1B;
    }
    
    .container {
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        max-width: 400px;
        width: 90%;
        text-align: center;
        animation: fadeIn 0.5s ease-out;
        margin: 2rem auto;
    }
    
    h1 {
        color: #000000;
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 2rem;
        line-height: 3rem;
    }
    
    h2 {
        font-size: 1.5em;
        margin-block-end: 0.50em;
        font-weight: bold;
    }
    
    h3 {
        font-size: 1.17em;
        margin-block-end: 0.5em;
        font-weight: bold;
    }
    
    p {
        display: block;
        margin-block-end: 1em;
        font-size: 1em;
        line-height: normal;
    }
    
    .mcdonalds-img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 15px;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
        -webkit-transition: transform 0.3s ease;
        -moz-transition: transform 0.3s ease;
        -ms-transition: transform 0.3s ease;
        -o-transition: transform 0.3s ease;
    }
    
    .mcdonalds-img:hover {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    
    .countdown-section {
        font-size: 1.2rem;
        font-weight: 600;
        color: #DA291C;
        margin-bottom: 1.5rem;
    }
    
    .countdown-section p {
        color: #010101;
    }
    
    .countdown-section .countdown-time-section {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .countdown-section .countdown-inner-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-section .countdown-seconds {
        font-size: 2rem;
        font-weight: 700;
        line-height: normal;
        padding-bottom: 0.1em;
    }
    
    .countdown-section .countdown-seconds-label {
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    
    .progress-bar-section {
        width: 100%;
        height: 10px;
        background-color: #e0e0e0;
        border-radius: 5px;
        margin-bottom: 1.5rem;
        overflow: hidden;
    }
    
    .progress-bar-section .progress {
        height: 100%;
        background-color: #DA291C;
        width: 33.33%;
        transition: width 0.3s ease;
    }
    
    .question {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .button {
        background-color: #DA291C;
    }
    
    h4 {
        line-height: normal;
    }
    
    .button {
        /*background-color: #004a9b;
        */
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        width: 100%;
        text-decoration: none;
        display: inline-block;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }
    
    .button:hover {
        background-color: #DA291C;
    }
    
    .button:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        -webkit-transform: translateY(-3px);
        -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -o-transform: translateY(-3px);
    }
    
    .description {
        font-size: 0.9rem;
        line-height: normal;
        color: #666;
        margin-bottom: 1.5rem;
    }
    
    footer {
        background-color: #f1f1f1;
        padding: 1rem;
        text-align: center;
        font-size: 0.7rem;
        color: #666;
        width: 100%;
    }
    
    footer p {
        margin-bottom: 1rem;
        line-height: normal;
    }
    
    footer ul li:not(:last-child) {
        margin: 0 0.5rem;
    }
    
    .modal ul li {
        padding: 0 0 0.5rem;
        line-height: normal;
    }
    
    footer ul li a {
        color: #004a9b;
        text-decoration: none;
    }
    
    footer ul li a:hover {
        text-decoration: underline;
    }
    
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
    }
    
    .modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    
    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(-20px);
            -webkit-transform: translateY(-20px);
            -moz-transform: translateY(-20px);
            -ms-transform: translateY(-20px);
            -o-transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
        }
    }
    
    @media (max-width: 640px) {
        .container {
            width: 95%;
            padding: 1rem;
            margin: 1rem auto;
        }
        h1 {
            font-size: 1.5rem;
        }
        .mcdonalds-img {
            max-width: 100%;
        }
        .countdown-section .countdown-seconds {
            font-size: 1.5rem;
        }
        .countdown-section .countdown-seconds-label {
            font-size: 0.7rem;
        }
        footer {
            font-size: 0.6rem;
            padding: 0.5rem;
        }
        footer p {
            margin-bottom: 0.5rem;
        }
        .modal-content {
            width: 95%;
            margin: 10% auto;
        }
    }
    
    .dtpcnt {
        opacity: 0;
    }