.be-site {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    color: #11344c;
    font-family: 'Encode Sans', sans-serif;
}

.be-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 48px 24px;
}

.be-section-header {
    margin-bottom: 24px;
}

.be-section-header__eyebrow {
    color: #f26a21;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.be-section-header h2 {
    color: #002f6c;
    font-size: 34px;
    margin-bottom: 12px;
}

.be-section-header__description,
.be-panel__content p,
.be-card-banner p,
.be-tile p,
.be-step p,
.be-list,
.be-button {
    font-family: 'Lato', sans-serif;
}

.be-section-header__description {
    font-size: 18px;
    margin: 0;
    max-width: 760px;
}

.be-panel {
    background: #ffffff;
    border: 1px solid #d7e2ec;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 47, 108, 0.08);
    padding: 32px;
}

.be-panel--accent {
    background: linear-gradient(135deg, #002f6c 0%, #0b88ae 100%);
    color: #ffffff;
}

.be-grid {
    display: grid;
    gap: 20px;
}

.be-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.be-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.be-tile {
    background: #ffffff;
    border: 1px solid #d7e2ec;
    border-radius: 24px;
    padding: 24px;
}

.be-button {
    background: #f26a21;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 700;
    padding: 14px 24px;
    text-decoration: none;
}

.be-button:hover,
.be-button:focus {
    color: #ffffff;
    text-decoration: none;
}

.be-list {
    margin: 0;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .be-grid--three,
    .be-grid--two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .be-section {
        padding: 32px 16px;
    }

    .be-panel {
        padding: 24px;
    }

    .be-section-header h2 {
        font-size: 28px;
    }

    .be-section-header__description {
        font-size: 16px;
    }
}