.two-cols{
    margin-top:6rem;
}
.two-cols .field--name-field-heading{
    font-size: 3rem;
    line-height: 1.1;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
@media (min-width: 1201px) {
    max-width: 60%;
}
.two-cols-par{
    display: flex;
    gap:3rem;
    padding:3rem;
    border-radius: 14px;
    background: #fafafa;
    margin-bottom:3rem;
}
.two-cols-par > div{
    flex:1;
}

.two-cols-par > div a{
    background: #1D4F91;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 7px;
    display: inline-block;
}
.two-cols-par > div a:hover{
    transform: translateY(1px);
    /* Optional: Smooth movement */
    transition: transform 0.2s ease;
}

@media (max-width: 800px) {
    .two-cols-par{
        flex-direction: column;
    }
}