
    /* ===== Philadelphia Hero Section ===== */
    .bellevue-hero {
        padding: 100px 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }

    .bellevue-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(220,38,38,0.05)"/><circle cx="50" cy="30" r="1" fill="rgba(220,38,38,0.05)"/><circle cx="90" cy="70" r="1" fill="rgba(220,38,38,0.05)"/></svg>');
        background-size: 100px 100px;
    }

    .bellevue-hero .container { text-align: center; }

    .bellevue-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(220, 38, 38, 0.15);
        padding: 10px 24px;
        border-radius: 100px;
        margin-bottom: 25px;
        border: 1px solid rgba(220, 38, 38, 0.3);
        color: #ef4444;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .bellevue-badge i { color: #dc2626; font-size: 14px; }

    .bellevue-title {
        font-size: 3.5rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .bellevue-title span { color: #dc2626; }

    .bellevue-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        color: #cbd5e1;
        margin-bottom: 20px;
    }

    .bellevue-description {
        font-size: 1.05rem;
        color: #9ca3af;
        line-height: 1.8;
        margin-bottom: 15px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .bellevue-areas {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin: 30px 0;
    }

    .area-badge-bellevue {
        background: rgba(220, 38, 38, 0.1);
        color: #ef4444;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        border: 1px solid rgba(220, 38, 38, 0.2);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .area-badge-bellevue i { color: #dc2626; }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .trust-badge { display: flex; align-items: center; gap: 8px; color: white; }
    .trust-badge i { color: #dc2626; }

    .btn-primary-bellevue {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #dc2626;
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    }

    .btn-primary-bellevue:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    }

    .btn-secondary-bellevue {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
        margin-left: 20px;
    }

    .btn-secondary-bellevue:hover {
        border-color: #dc2626;
        background: rgba(220, 38, 38, 0.1);
    }

    /* ===== Assessment Section ===== */
    .assessment-section { padding: 80px 0; background: white; }
    .assessment-grid { display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: center; }
    .assessment-left h2 { font-size: 2.5rem; font-weight: 800; color: #000000; margin-bottom: 20px; }
    .assessment-left h3 { font-size: 1.5rem; font-weight: 600; color: #dc2626; margin-bottom: 20px; }
    .assessment-left p { font-size: 1.1rem; color: #6b7280; line-height: 1.7; margin-bottom: 30px; }
    .assessment-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
    .feature-item { display: flex; align-items: center; gap: 10px; }
    .feature-item i { color: #10b981; font-size: 1.1rem; }
    .feature-item span { color: #000000; font-weight: 500; }
    .assessment-stats { display: flex; gap: 40px; }
    .stat-box { text-align: center; }
    .stat-box .stat-number { display: block; font-size: 2.5rem; font-weight: 900; color: #dc2626; }
    .stat-box .stat-label { color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }

    .section-badge {
        display: inline-flex; align-items: center; gap: 10px;
        background: rgba(220, 38, 38, 0.1); padding: 10px 24px;
        border-radius: 100px; margin-bottom: 25px;
        border: 1px solid rgba(220, 38, 38, 0.2);
    }
    .section-badge i { color: #dc2626; font-size: 14px; }
    .section-badge span { color: #991b1b; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

    /* ===== Content Sections ===== */
    .content-section { padding: 80px 0; background: white; }
    .content-section.dark { background: #000000; color: white; }
    .content-section.dark .section-title,
    .content-section.dark h2,
    .content-section.dark h3 { color: white; }
    .content-section.dark p { color: #cbd5e1; }
    .section-title { font-size: 2.5rem; font-weight: 800; color: #000000; margin-bottom: 20px; text-align: center; }
    .content-section.dark .section-title { color: white; }
    .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .content-text h2 { font-size: 2rem; font-weight: 700; color: #000000; margin-bottom: 20px; }
    .content-section.dark .content-text h2 { color: white; }
    .content-text h3 { font-size: 1.5rem; font-weight: 600; color: #dc2626; margin-bottom: 15px; }
    .content-text p { font-size: 1rem; line-height: 1.7; color: #374151; margin-bottom: 20px; }
    .content-section.dark .content-text p { color: #cbd5e1; }
    .content-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .content-image img { width: 100%; height: auto; display: block; }
    .image-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, transparent 100%); }

    /* ===== Benefit Grid ===== */
    .benefit-grid { display: grid; gap: 20px; }
    .benefit-item { display: flex; gap: 15px; align-items: flex-start; }
    .benefit-item i { color: #dc2626; font-size: 1.5rem; margin-top: 3px; }
    .benefit-item-content h4 { font-size: 1.1rem; font-weight: 600; color: #000000; margin-bottom: 5px; }
    .content-section.dark .benefit-item-content h4 { color: white; }
    .benefit-item-content p { margin-bottom: 0; font-size: 0.95rem; }

    /* ===== Features Grid ===== */
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
    .feature-card { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; border: 1px solid #e5e7eb; transition: transform 0.3s ease; }
    .content-section.dark .feature-card { background: #111111; border-color: #1f1f1f; }
    .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(220,38,38,0.1); }
    .feature-icon-wrapper { width: 70px; height: 70px; background: rgba(220, 38, 38, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .feature-icon { font-size: 30px; color: #dc2626; }
    .feature-card h3 { font-size: 1.2rem; font-weight: 700; color: #000000; margin-bottom: 15px; }
    .content-section.dark .feature-card h3 { color: white; }
    .feature-card p { color: #6b7280; line-height: 1.6; }
    .content-section.dark .feature-card p { color: #9ca3af; }

    /* ===== Key Points Grid ===== */
    .key-points-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .key-point-item { text-align: center; padding: 20px; }
    .key-point-item i { font-size: 32px; color: #dc2626; margin-bottom: 15px; }
    .key-point-item p { color: #374151; font-weight: 500; line-height: 1.5; }
    .content-section.dark .key-point-item p { color: #cbd5e1; }

    /* ===== Testimonials ===== */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .testimonial-card { background: white; padding: 35px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #e5e7eb; }
    .testimonial-card i { color: #dc2626; font-size: 30px; opacity: 0.5; margin-bottom: 20px; }
    .testimonial-text { font-size: 1rem; line-height: 1.7; color: #374151; margin-bottom: 20px; }
    .testimonial-author { font-weight: 700; color: #dc2626; }

    /* ===== Stats Grid ===== */
    .stats-grid { display: flex; justify-content: center; gap: 60px; }
    .stat-item { text-align: center; }
    .stat-number { font-size: 3rem; font-weight: 900; color: #dc2626; }
    .stat-label { color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .content-section.dark .stat-label { color: #9ca3af; }

    /* ===== FAQ ===== */
    .faq-grid-new { display: grid; gap: 15px; max-width: 900px; margin: 0 auto; }
    .faq-item-new { background: white; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; }
    .content-section.dark .faq-item-new { background: #111111; border-color: #1f1f1f; }
    .faq-question-new { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: #000000; transition: background 0.3s ease; }
    .content-section.dark .faq-question-new { color: white; }
    .faq-question-new:hover { background: rgba(220, 38, 38, 0.05); }
    .faq-question-new i { color: #dc2626; transition: transform 0.3s ease; }
    .faq-question-new.active i { transform: rotate(180deg); }
    .faq-answer-new { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
    .faq-answer-new.show { padding: 0 25px 20px 25px; max-height: 500px; }
    .faq-answer-new p { color: #6b7280; line-height: 1.7; }
    .content-section.dark .faq-answer-new p { color: #9ca3af; }

    /* ===== Container & Animations ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-header { text-align: center; margin-bottom: 50px; }
    .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
    .animation-delay-100 { transition-delay: 0.1s; }
    .animation-delay-200 { transition-delay: 0.2s; }
    .animation-delay-300 { transition-delay: 0.3s; }
    .animation-delay-400 { transition-delay: 0.4s; }

    /* ===== Responsive ===== */
    @media screen and (max-width: 1024px) {
        .bellevue-title { font-size: 2.8rem; }
        .features-grid { grid-template-columns: repeat(2, 1fr); }
        .key-points-grid { grid-template-columns: repeat(3, 1fr); }
        .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        .assessment-grid { grid-template-columns: 1fr; }
        .assessment-right { max-width: 450px; margin: 0 auto; width: 100%; }
    }

    @media screen and (max-width: 900px) {
        .content-grid { grid-template-columns: 1fr; gap: 40px; }
        .content-image { order: -1; }
    }

    @media screen and (max-width: 768px) {
        .bellevue-hero { padding: 70px 0; }
        .bellevue-title { font-size: 2.2rem; }
        .bellevue-subtitle { font-size: 1.2rem; }
        .features-grid { grid-template-columns: 1fr; }
        .key-points-grid { grid-template-columns: repeat(2, 1fr); }
        .testimonials-grid { grid-template-columns: 1fr; }
        .section-title { font-size: 2rem; }
        .assessment-features { grid-template-columns: 1fr; }
        .assessment-stats { flex-direction: column; gap: 20px; }
        .stats-grid { flex-direction: column; gap: 30px; }
        .btn-secondary-bellevue { margin-left: 0; margin-top: 20px; }
    }

    @media screen and (max-width: 480px) {
        .bellevue-title { font-size: 1.8rem; }
        .key-points-grid { grid-template-columns: 1fr; }
    }
