    .worldview-section {
        /* Main theme primary dark background */
        background-color: #21293B;

        /* Subtle theme-matched grid lines */
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        color: #FFFFFF;
        padding: 100px 5%;
        font-family: 'Inter Tight', sans-serif;
    }

    .worldview-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    }

    /* Left Column Styling */
    .sheet-label {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    /* Updated to your theme Accent Color (#D53F34) */
    .gold-line {
        width: 24px;
        height: 2px;
        background-color: #D53F34;
    }

    .label-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 13px;
        letter-spacing: 2px;
        color: #A0AEC0;
        text-transform: uppercase;
        font-weight: 600;
    }

    .worldview-heading {
        font-family: 'Inter Tight', sans-serif;
        font-size: 52px;
        line-height: 1.15;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
    }

    /* Right Column Styling */
    .worldview-right {
        font-size: 16px;
        line-height: 1.6;
        color: #CBD5E1;
    }

    .lead-text {
        margin-top: 0;
        margin-bottom: 24px;
        color: #E2E8F0;
    }

    .sub-lead {
        margin-bottom: 24px;
        color: #A0AEC0;
    }

    /* Blockquote updated with theme accent line & white text */
    .quote-box {
        border-left: 3px solid #D53F34;
        padding-left: 24px;
        margin: 32px 0;
        font-family: 'Inter Tight', sans-serif;
        font-style: italic;
        font-size: 26px;
        line-height: 1.4;
        font-weight: 500;
        color: #FFFFFF;
    }

    .footer-note {
        font-size: 15px;
        color: #A0AEC0;
        margin: 0;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .worldview-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .worldview-heading {
            font-size: 36px;
        }

        .quote-box {
            font-size: 20px;
        }
    }

    /* //////////////////////////////////////////////// */

    .holness-section {
        background-color: #21293B;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 24px 24px;
        padding: 100px 5%;
        font-family: 'Inter Tight', sans-serif;
        color: #FFFFFF;
    }

    .holness-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 60px;
        align-items: start;
    }

    /* Header & Manifesto */
    .sheet-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .badge-line {
        width: 24px;
        height: 2px;
        background-color: #D53F34;
    }

    .badge-text {
        font-size: 13px;
        letter-spacing: 2px;
        color: #A0AEC0;
        text-transform: uppercase;
        font-weight: 600;
    }

    .holness-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        color: #FFFFFF;
        margin-bottom: 30px;
    }

    .holness-title .highlight {
        color: #D53F34;
    }

    .holness-quote {
        border-left: 3px solid #D53F34;
        padding-left: 20px;
        margin: 0 0 24px 0;
        font-style: italic;
        font-size: 22px;
        line-height: 1.5;
        color: #E2E8F0;
    }

    .holness-quote cite {
        display: block;
        font-style: normal;
        font-size: 14px;
        color: #A0AEC0;
        margin-top: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .holness-statement {
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 0.5px;
        margin: 0;
    }

    /* Restores Grid */
    .restores-label {
        font-size: 20px;
        font-weight: 600;
        color: #A0AEC0;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .restoration-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .restoration-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }

    .restoration-card:hover {
        background: rgba(213, 63, 52, 0.08);
        border-color: #D53F34;
        transform: translateY(-2px);
    }

    .card-icon {
        color: #D53F34;
        font-size: 14px;
    }

    .card-label {
        font-size: 16px;
        font-weight: 500;
        color: #FFFFFF;
    }

    /* Responsive Rules */
    @media (max-width: 992px) {
        .holness-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 576px) {
        .restoration-grid {
            grid-template-columns: 1fr;
        }

        .holness-title {
            font-size: 32px;
        }

        .holness-quote {
            font-size: 18px;
        }
    }

    