:root {
    --bep-primary: #0b4f9c;
    --bep-primary-dark: #072f5f;
    --bep-accent: #f49b24;
    --bep-text: #172033;
    --bep-muted: #64748b;
    --bep-border: #e2e8f0;
    --bep-soft: #f6f9fc;
    --bep-white: #ffffff;
    --bep-radius: 12px;
    --bep-shadow: 0 10px 30px rgba(15, 50, 90, 0.10);
}

.bep-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.bep-section-title {
    color: var(--bep-primary-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
}

.bep-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bep-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--bep-shadow);
}

.bep-button--primary {
    color: #fff;
    background: var(--bep-primary);
}

.bep-button--outline {
    color: var(--bep-primary);
    border-color: var(--bep-primary);
    background: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
