
/* ================= CTA SIGN UP HERO ================= */

.cta-signup {
    display: block;
    width: calc(100% - 200px);
    max-width: 1200px;
    margin: 60px auto 0 auto;

    background: #c5161d;
    color: #ffffff;

    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;

    padding: 28px 0;
    border-radius: 14px;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.cta-signup:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.35);
    background: #d91c23;
}
