/* McDonalds Landing Page Styles */
.mcd-landing {
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #222;
    padding: 2.5rem 1rem 1rem 1rem;
}
.mcd-logo {
    max-width: 120px;
    width: 100%;
    margin: 0 auto 1.5rem auto;
    display: block;
}
.mcd-subheading {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #222;
}
.mcd-steps {
    list-style: decimal inside;
    padding: 0;
    margin: 0 0 2.2rem 0;
    color: #222;
    font-size: 1.08rem;
    text-align: left;
    width: 100%;
    max-width: 350px;
    font-weight: 600;
}
.mcd-steps li {
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.mcd-steps li b {
    font-weight: 700;
}
.mcd-cta {
    display: block;
    width: 100%;
    max-width: 260px;
    background: #d32f2f;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 7px;
    padding: 0.9rem 0;
    margin: 1.2rem auto 0 auto;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(211,47,47,0.08);
    transition: background 0.2s, transform 0.15s;
    animation: mcd-cta-pulse 1.2s infinite;
}
.mcd-cta:hover, .mcd-cta:focus {
    background: #b71c1c;
    color: #fff;
    transform: scale(1.06);
    animation: none;
}
@keyframes mcd-cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(211,47,47,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}
@media (max-width: 500px) {
    .mcd-logo {
        max-width: 80px;
    }
    .mcd-steps {
        font-size: 1.01rem;
        max-width: 98vw;
    }
    .mcd-cta {
        font-size: 1.1rem;
        max-width: 98vw;
    }
} 