.cf-knowledge {
    background: var(--theme-footer-custom);
    color: rgb(var(--theme-link));
    padding: 80px 20px;
    text-align: center;
}

.cf-knowledge-header {
    margin-bottom: 50px;
}

.cf-knowledge-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.cf-knowledge-header p {
    color: rgb(var(--theme-text_light));
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto;
}

.cf-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.cf-knowledge-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(98, 200, 142, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    text-decoration: none !important;
    color: inherit;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, border 0.2s ease;
}

.cf-knowledge-icon {
    background: rgb( var(--theme-light_button) );
    border-radius: 8px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 20px;
    color: rgb( var(--theme-text_color) );
}

.cf-knowledge-card:hover {
    transform: translateY(-4px);
}

.cf-knowledge-content h3 {
    margin: 0 0 6px;
    font-size: 1.1em;
    color: rgb(var(--theme-link));
}

.cf-knowledge-content p {
    font-size: 0.95em;
    color: rgb(var(--theme-text_light));
    margin: 0;
    line-height: 1.4;
}