.cfc-wrap {
    --cfc-white: #ffffff;
    --cfc-blue: #002136;
    --cfc-text: #1f2933;
    --cfc-muted: #5f6b76;
    --cfc-border: #e6ebef;
    --cfc-panel: #ffffff;
    --cfc-radius: 10px;
    --cfc-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);

    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: transparent;
    color: var(--cfc-text);
    box-sizing: border-box;
    font-family: inherit;
}

.cfc-wrap,
.cfc-wrap *,
.cfc-wrap *::before,
.cfc-wrap *::after {
    box-sizing: border-box;
}

.cfc-wrap input,
.cfc-wrap label,
.cfc-wrap h2,
.cfc-wrap p,
.cfc-wrap span,
.cfc-wrap div {
    font: inherit;
}

.cfc-wrap .cfc-title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--cfc-blue);
}

.cfc-wrap .cfc-field-group {
    margin-bottom: 28px;
}

.cfc-wrap .cfc-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--cfc-blue);
}

.cfc-wrap .cfc-help-text {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--cfc-muted);
}

.cfc-wrap .cfc-input {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid var(--cfc-border) !important;
    border-radius: 6px !important;
    background: var(--cfc-white) !important;
    color: var(--cfc-text) !important;
    font-size: 18px;
    line-height: 1.2;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.cfc-wrap .cfc-input:focus {
    outline: none;
    border-color: var(--cfc-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 33, 54, 0.08) !important;
}

.cfc-wrap .cfc-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
}

.cfc-wrap .cfc-card {
    background: var(--cfc-panel) !important;
    border: 1px solid var(--cfc-border) !important;
    border-radius: var(--cfc-radius);
    box-shadow: var(--cfc-shadow);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cfc-wrap .cfc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
}

.cfc-wrap .cfc-term {
    display: block;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--cfc-muted) !important;
}

.cfc-wrap .cfc-fee {
    display: block;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--cfc-blue) !important;
}

@media (max-width: 767px) {
    .cfc-wrap {
        padding: 16px;
    }

    .cfc-wrap .cfc-title {
        font-size: 26px;
    }

    .cfc-wrap .cfc-label,
    .cfc-wrap .cfc-help-text {
        text-align: center;
    }

    .cfc-wrap .cfc-label {
        font-size: 15px;
    }

    .cfc-wrap .cfc-input {
        min-height: 48px;
        font-size: 16px;
    }

    .cfc-wrap .cfc-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cfc-wrap .cfc-card {
        padding: 20px;
    }

    .cfc-wrap .cfc-term {
        font-size: 14px;
    }

    .cfc-wrap .cfc-fee {
        font-size: 24px;
    }
}