#cta {
    padding: 0;
    background: #111;
    color: #fff;
    height: 350px;
    position: relative;
    overflow: hidden;
}

#cta .attention-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;

}

#cta .attention-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

#cta > * {
    position: relative;
    z-index: 2;
}

#cta .attention-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    text-align: center;
    gap: 20px;
}

#cta .attention-text div {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: left;
    margin: 0;
    width: 21ch;
    line-height: 1.2;
}

#cta .btn-primary {
    background: #e6c97a;
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    box-shadow: none;
    transition: background 0.2s, box-shadow 0.2s;
}

#cta .btn-primary:hover {
    background: #fadc8a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 1050px) {
    #cta .attention-text div {
        font-size: 3rem;
    }
} 
/* Responsive styles */
@media (max-width: 930px) {
    #cta .attention-flex {
        flex-direction: column;
        justify-content: center;
    }
    #cta .attention-text {
        margin-bottom: 20px;
    }
    #cta .attention-text div {
        text-align: center;
    }
} 
@media (max-width: 650px) {
    #cta .attention-text div {
        font-size: 2.5rem;
    }
    #cta .btn-primary {
        font-weight: 700;
        font-size: 1.1rem;
        padding: 16px 36px;
        border-radius: 2px;
        gap: 10px;
    }
} 
@media (max-width: 450px) {
    #cta {
        height: 300px;
    }
    #cta .attention-text div {
        font-size: 2.0rem;
    }
    #cta .btn-primary {
        font-weight: 700;
        font-size: 0.9rem;
        padding: 14px 25px;
        border-radius: 2px;
        gap: 10px;
    }
} 