/* ========================================
   KNOWLEDGE BASE STYLES - UK THEME
   ======================================== */

/* Hero Section */
.kb-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #012169 0%, #0A0E1A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kb-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.05) 0%,
        transparent 50%,
        rgba(200, 16, 46, 0.05) 100%
    );
    animation: heroShift 20s ease infinite;
}

@keyframes heroShift {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.6; transform: translateX(20px); }
}

.kb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.kb-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-family: 'Georgia', serif;
}

.kb-hero-subtitle {
    font-size: 18px;
    color: #E8E8E8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Quick Navigation Section */
.kb-nav-section {
    padding: 60px 0;
    background: #0A0E1A;
}

.kb-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.kb-nav-card {
    background: linear-gradient(145deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kb-nav-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.kb-nav-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.kb-nav-icon svg {
    color: #FFD700;
}

.kb-nav-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.kb-nav-card p {
    font-size: 14px;
    color: #C0C0C0;
    line-height: 1.5;
}

/* Content Sections */
.kb-content-section {
    padding: 80px 0;
    background: #0A0E1A;
}

.kb-alt-section {
    background: rgba(1, 33, 105, 0.1);
}

.kb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.kb-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.kb-section-icon svg {
    color: #FFD700;
}

.kb-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.kb-section-subtitle {
    font-size: 18px;
    color: #C0C0C0;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.kb-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.kb-content-card {
    background: linear-gradient(145deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.kb-content-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.kb-featured-card {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #012169, #0A0E1A);
    border-color: #FFD700;
}

.kb-tip-card {
    background: linear-gradient(145deg, rgba(200, 16, 46, 0.2), rgba(1, 33, 105, 0.5));
    border-color: rgba(200, 16, 46, 0.4);
}

.kb-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.kb-card-title svg {
    color: #FFD700;
    flex-shrink: 0;
}

.kb-content-card p {
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.kb-content-card p:last-child {
    margin-bottom: 0;
}

/* Lists */
.kb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.kb-list li:last-child {
    border-bottom: none;
}

.kb-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.kb-benefits-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
}

.kb-benefits-list li::before {
    display: none;
}

.kb-benefits-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FFD700;
}

.kb-numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.kb-numbered-list li {
    counter-increment: item;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.kb-numbered-list li:last-child {
    border-bottom: none;
}

.kb-numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Highlight Boxes */
.kb-highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #E8E8E8;
}

.kb-info-box {
    background: rgba(1, 33, 105, 0.4);
    border-left: 4px solid #FFD700;
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #E8E8E8;
}

.kb-warning-box {
    background: rgba(200, 16, 46, 0.2);
    border-left: 4px solid #C8102E;
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #E8E8E8;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kb-warning-box svg {
    flex-shrink: 0;
    color: #C8102E;
    margin-top: 2px;
}

/* Matrix Visual */
.matrix-visual {
    margin-top: 32px;
    padding: 32px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.matrix-level {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.matrix-node {
    padding: 12px 24px;
    background: rgba(1, 33, 105, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #E8E8E8;
    font-size: 14px;
    font-weight: 600;
}

.matrix-node.you {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    border-color: #FFD700;
    font-weight: 700;
}

.matrix-dots {
    text-align: center;
    font-size: 24px;
    color: #FFD700;
    margin: 16px 0;
}

.matrix-info {
    text-align: center;
    color: #C0C0C0;
    font-size: 13px;
    font-style: italic;
}

/* Commission Table */
.commission-table {
    margin-top: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.commission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.commission-row:last-child {
    border-bottom: none;
}

.commission-header {
    background: rgba(255, 215, 0, 0.1);
    font-weight: 700;
    color: #FFD700;
}

.commission-rate {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
}

/* Matrix Stats */
.matrix-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.matrix-stat {
    text-align: center;
    padding: 20px;
    background: rgba(1, 33, 105, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.matrix-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.matrix-stat-label {
    font-size: 12px;
    color: #C0C0C0;
}

/* Rubby Qualification Requirements (formerly CTO) */
.qualification-requirements {
    margin-top: 24px;
}

.requirement-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
}

.requirement-icon svg {
    color: #012169;
}

.requirement-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.requirement-content p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
}

/* Rubby Bonus Grid (formerly CTO Bonus) */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.bonus-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
}

.bonus-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.bonus-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.bonus-item p {
    font-size: 13px;
    color: #C0C0C0;
    margin: 0;
}

/* Earnings Comparison (Regular Member vs Rubby Member) */
.earnings-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.earnings-column {
    padding: 24px;
    background: rgba(1, 33, 105, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.earnings-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.earnings-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.earnings-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 14px;
}

.earnings-value {
    color: #FFD700;
    font-weight: 600;
}

.earnings-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 16px;
    font-weight: 700;
}

.earnings-value-total {
    color: #FFD700;
    font-size: 20px;
}

/* Subscription Tiers */
.subscription-tiers-container {
    margin-top: 48px;
}

.tiers-intro {
    text-align: center;
    font-size: 16px;
    color: #E8E8E8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.subscription-tier {
    background: linear-gradient(145deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.subscription-tier:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.tier-popular {
    position: relative;
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.tier-popular::before {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tier-featured {
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.tier-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tier-starter {
    background: rgba(200, 16, 46, 0.3);
    color: #C8102E;
    border: 1px solid rgba(200, 16, 46, 0.4);
}

.tier-silver {
    background: rgba(192, 192, 192, 0.3);
    color: #C0C0C0;
    border: 1px solid rgba(192, 192, 192, 0.4);
}

.tier-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    border: none;
}

.tier-elite {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.tier-price {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.tier-daily-limit {
    font-size: 14px;
    color: #FFA500;
    margin-bottom: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.subscription-tier h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: #E8E8E8;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #FFD700;
}

/* Payout Flow */
.payout-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.payout-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.payout-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.payout-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.payout-step p {
    font-size: 14px;
    color: #C0C0C0;
    margin: 0;
}

.payout-arrow {
    font-size: 32px;
    color: #FFD700;
    flex-shrink: 0;
}

/* Getting Started Timeline */
.getting-started-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.getting-started-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #FFD700, rgba(255, 215, 0, 0.3));
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    border: 4px solid #0A0E1A;
}

.timeline-content {
    flex: 1;
    padding: 20px 24px;
    background: linear-gradient(145deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #FFD700;
    transform: translateX(8px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #E8E8E8;
    line-height: 1.6;
    margin: 0;
}

.timeline-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.timeline-links a {
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.timeline-links a:hover {
    color: #FFA500;
}

/* FAQ Section */
.kb-faq-section {
    padding: 80px 0;
    background: rgba(1, 33, 105, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    padding: 24px;
    background: linear-gradient(145deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFD700;
    transform: translateY(-4px);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #E8E8E8;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.kb-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #012169 0%, #0A0E1A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kb-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%
    );
}

.kb-cta-content {
    position: relative;
    z-index: 1;
}

.kb-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.kb-cta-content p {
    font-size: 18px;
    color: #E8E8E8;
    margin-bottom: 40px;
}

.kb-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 968px) {
    .kb-hero-title {
        font-size: 42px;
    }

    .kb-section-title {
        font-size: 36px;
    }

    .kb-content-grid {
        grid-template-columns: 1fr;
    }

    .subscription-tiers {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .payout-flow {
        flex-direction: column;
    }

    .payout-arrow {
        transform: rotate(90deg);
    }

    .getting-started-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .kb-hero-section {
        padding: 60px 0 40px;
    }

    .kb-hero-title {
        font-size: 32px;
    }

    .kb-hero-subtitle {
        font-size: 16px;
    }

    .kb-nav-section {
        padding: 40px 0;
    }

    .kb-nav-grid {
        grid-template-columns: 1fr;
    }

    .kb-content-section {
        padding: 48px 0;
    }

    .kb-section-title {
        font-size: 28px;
    }

    .kb-section-icon {
        width: 60px;
        height: 60px;
    }

    .kb-content-card {
        padding: 24px;
    }

    .matrix-visual {
        padding: 20px;
    }

    .matrix-level {
        flex-direction: column;
        align-items: center;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .earnings-comparison {
        grid-template-columns: 1fr;
    }

    .subscription-tiers {
        grid-template-columns: 1fr;
    }

    .getting-started-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-marker {
        margin-bottom: 16px;
    }

    .timeline-content:hover {
        transform: translateY(-4px);
    }

    .timeline-links {
        justify-content: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .kb-cta-section {
        padding: 60px 0;
    }

    .kb-cta-content h2 {
        font-size: 32px;
    }

    .kb-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .kb-cta-buttons .btn-primary,
    .kb-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .kb-hero-title {
        font-size: 28px;
    }

    .kb-section-title {
        font-size: 24px;
    }

    .kb-nav-icon {
        width: 56px;
        height: 56px;
    }

    .kb-nav-card {
        padding: 24px 20px;
    }

    .kb-content-card {
        padding: 20px;
    }

    .tier-price {
        font-size: 36px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .kb-cta-content h2 {
        font-size: 28px;
    }
}