@charset "utf-8";
/* CSS Document */


<style>
:root {
    --cfc-blue: #02486d;
    --cfc-dark: #062b3d;
    --cfc-light: #eef7fa;
    --cfc-gold: #d9aa38;
    --cfc-white: #ffffff;
    --cfc-text: #25323a;
    --cfc-gray: #667782;
    --cfc-border: #d7e2e8;
}

.cfc-training {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cfc-text);
    line-height: 1.6;
}

.cfc-training * {
    box-sizing: border-box;
}

.cfc-wrap {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

.cfc-section {
    padding: 75px 20px;
}

.cfc-section-light {
    background: var(--cfc-light);
}

.cfc-section-dark {
    background: var(--cfc-dark);
    color: var(--cfc-white);
}

.cfc-center {
    text-align: center;
}

.cfc-eyebrow {
    color: var(--cfc-gold);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cfc-title {
    color: var(--cfc-blue);
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 0 0 20px;
}

.cfc-section-dark .cfc-title {
    color: var(--cfc-white);
}

.cfc-subtitle {
    font-size: 21px;
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--cfc-gray);
}

.cfc-section-dark .cfc-subtitle {
    color: #d7e5eb;
}

.cfc-btn {
    display: inline-block;
    padding: 17px 30px;
    background: var(--cfc-gold);
    color: #102b38 !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 5px;
    transition: .2s ease;
}

.cfc-btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.cfc-btn-blue {
    background: var(--cfc-blue);
    color: #fff !important;
}

.cfc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.cfc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.cfc-card {
    background: #fff;
    border: 1px solid var(--cfc-border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 7px 25px rgba(0,0,0,.05);
}

.cfc-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.cfc-checklist li {
    position: relative;
    padding: 0 0 17px 35px;
    font-size: 18px;
}

.cfc-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cfc-gold);
    font-size: 20px;
    font-weight: bold;
}

.cfc-step-number {
    width: 48px;
    height: 48px;
    background: var(--cfc-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cfc-card h3 {
    margin-top: 0;
    color: var(--cfc-blue);
}

.cfc-highlight {
    color: var(--cfc-gold);
}

.cfc-divider {
    width: 70px;
    height: 4px;
    background: var(--cfc-gold);
    margin: 20px auto 30px;
}

@media(max-width: 800px) {
    .cfc-grid-2,
    .cfc-grid-3 {
        grid-template-columns: 1fr;
    }

    .cfc-section {
        padding: 55px 20px;
    }
}
</style>

/* CFC Blog cleanup only */
.cfc-blog-page .article-info-term {
    display: none !important;
}

.cfc-blog-page .cat-children {
    display: none !important;
}