
.orSeparator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
}

.orSeparator::before,
.orSeparator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 0 10px;
}

.primaryButton.crmPrimaryBtn {
    display: inline-block;
    background-color: #0057ff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.secondaryButton.crmSecondaryBtn {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.secondaryButton.crmSecondaryBtn:hover {
    background-color: #e6e6e6;
}

.downloadsHeroTextContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 16px;
    margin-block: 16px;
}
.downloadsCtaButtons{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    color: #333;
}
.downloadsCtaButtons .crmPrimaryBtn{
    background-color: var(--color-primary);
    color: white;
}
.downloadsCtaButtons .crmGhostBtn{
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}
.downloadsCtaButtons .crmGhostBtn:hover{
    border-color: white;
}