
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #f3f4f6;
        --bellevue-teal: #0d9488;
        --bellevue-gold: #d97706;
        --premium-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        --gradient-bellevue: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Hero Section - Bellevue */
    .bellevue-hero {
        background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        width: 100%;
        border-bottom: 3px solid var(--primary-red);
    }

    .bellevue-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
        z-index: 1;
    }

    .bellevue-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220, 38, 38, 0.08);
        padding: 10px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        border: 1px solid rgba(220, 38, 38, 0.15);
        position: relative;
        z-index: 2;
    }

    .bellevue-badge i {
        color: var(--primary-red);
        font-size: 1rem;
    }

    .bellevue-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .bellevue-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 25px;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .bellevue-title span {
        color: var(--primary-red);
        position: relative;
    }

    .bellevue-subtitle {
        font-size: 1.3rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 30px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    .bellevue-description {
        font-size: 1.1rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 25px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    /* Local Bellevue Badges */
    .bellevue-areas {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
        position: relative;
        z-index: 2;
    }

    .area-badge-bellevue {
        background: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--dark-gray);
        box-shadow: var(--card-shadow);
        border: 1px solid var(--light-gray);
        transition: var(--smooth-transition);
    }

    .area-badge-bellevue:hover {
        border-color: var(--primary-red);
        transform: translateY(-2px);
    }

    .area-badge-bellevue i {
        color: var(--primary-red);
        margin-right: 6px;
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .section-header h2 {
        font-size: 3rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-header h2 span {
        color: var(--primary-red);
        position: relative;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(220, 38, 38, 0.08);
        padding: 8px 20px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .section-badge i {
        color: var(--primary-red);
        font-size: 0.9rem;
    }

    .section-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Service Cards Grid */
    .services-grid-bellevue {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }

    .service-card-bellevue {
        background: white;
        border-radius: 24px;
        padding: 35px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .service-card-bellevue::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .service-card-bellevue:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
        border-color: rgba(220, 38, 38, 0.1);
    }

    .service-card-bellevue:hover::before {
        transform: scaleX(1);
    }

    .service-icon-bellevue {
        width: 70px;
        height: 70px;
        background: rgba(220, 38, 38, 0.08);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: var(--smooth-transition);
    }

    .service-card-bellevue:hover .service-icon-bellevue {
        background: var(--gradient-primary);
    }

    .service-icon-bellevue i {
        font-size: 32px;
        color: var(--primary-red);
        transition: var(--smooth-transition);
    }

    .service-card-bellevue:hover .service-icon-bellevue i {
        color: white;
    }

    .service-card-bellevue h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
        transition: var(--smooth-transition);
    }

    .service-card-bellevue:hover h3 {
        color: var(--primary-red);
    }

    .service-card-bellevue p {
        color: var(--medium-gray);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Image Split Layout */
    .image-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin: 80px 0;
    }

    .image-split.reverse {
        direction: rtl;
    }

    .image-split.reverse .image-split-content {
        direction: ltr;
    }

    .image-split-content h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--dark-gray);
    }

    .image-split-content p {
        color: var(--medium-gray);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .image-split-content ul {
        list-style: none;
        margin-top: 25px;
    }

    .image-split-content li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        color: var(--medium-gray);
        border-bottom: 1px dashed rgba(220, 38, 38, 0.1);
    }

    .image-split-content li:last-child {
        border-bottom: none;
    }

    .image-split-content li i {
        color: var(--primary-red);
        font-size: 1.1rem;
    }

    .image-split-img {
        border-radius: 28px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
    }

    .image-split-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
        display: block;
    }

    .image-split-img:hover img {
        transform: scale(1.05);
    }

    /* Features Grid */
    .features-grid-bellevue {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 50px 0;
    }

    .feature-card-bellevue {
        background: white;
        border-radius: 24px;
        padding: 30px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border-left: 4px solid var(--primary-red);
    }

    .feature-card-bellevue:hover {
        transform: translateY(-5px);
        box-shadow: var(--premium-shadow);
    }

    .feature-card-bellevue h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-card-bellevue h3 i {
        color: var(--primary-red);
        font-size: 1.5rem;
    }

    .feature-card-bellevue p {
        color: var(--medium-gray);
        line-height: 1.6;
    }

    /* Steps Section */
    .steps-section {
        background: var(--light-gray);
        padding: 80px 0;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .step-card {
        background: white;
        border-radius: 20px;
        padding: 25px;
        text-align: center;
        transition: var(--smooth-transition);
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--premium-shadow);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 auto 20px;
    }

    .step-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .step-card p {
        color: var(--medium-gray);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Testimonials Section */
    .testimonials-bellevue {
        padding: 80px 0;
        background: white;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .testimonial-card {
        background: var(--light-gray);
        border-radius: 24px;
        padding: 35px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--premium-shadow);
    }

    .testimonial-card i.fa-quote-left {
        color: rgba(220, 38, 38, 0.2);
        font-size: 2.5rem;
        position: absolute;
        top: 20px;
        right: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--medium-gray);
        margin-bottom: 20px;
        font-style: italic;
    }

    .testimonial-author {
        font-weight: 800;
        color: var(--primary-red);
        margin-top: 15px;
        font-size: 1.1rem;
    }

    /* FAQ Section */
    .faq-section-bellevue {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .faq-grid-bellevue {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item-bellevue {
        background: white;
        border-radius: 20px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--light-gray);
    }

    .faq-question-bellevue {
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--dark-gray);
        transition: var(--smooth-transition);
    }

    .faq-question-bellevue:hover {
        background: rgba(220, 38, 38, 0.03);
    }

    .faq-question-bellevue i {
        color: var(--primary-red);
        transition: transform 0.3s ease;
    }

    .faq-question-bellevue.active i {
        transform: rotate(180deg);
    }

    .faq-answer-bellevue {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        color: var(--medium-gray);
        line-height: 1.7;
    }

    .faq-answer-bellevue.show {
        padding: 0 30px 25px 30px;
        max-height: 500px;
    }

    /* CTA Section */
    .cta-bellevue {
        background: var(--gradient-primary);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-bellevue::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    }

    .cta-content-bellevue {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title-bellevue {
        font-size: 3rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }

    .cta-text-bellevue {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .btn-primary-bellevue {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: white;
        color: var(--primary-red);
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-primary-bellevue:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        gap: 18px;
    }

    .btn-secondary-bellevue {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        color: white;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        border: 2px solid white;
        margin-left: 15px;
    }

    .btn-secondary-bellevue:hover {
        background: white;
        color: var(--primary-red);
        transform: translateY(-3px);
    }

    /* Stats Section */
    .stats-bellevue {
        background: var(--light-gray);
        padding: 80px 0;
    }

    .stats-grid-bellevue {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-item-bellevue {
        padding: 20px;
    }

    .stat-number-bellevue {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    .stat-label-bellevue {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark-gray);
    }

    /* Key Points List */
    .key-points {
        background: var(--gradient-bellevue);
        padding: 60px 0;
        color: white;
    }

    .key-points-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: center;
    }

    .key-point-item {
        padding: 20px;
    }

    .key-point-item i {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 15px;
    }

    .key-point-item p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Responsive */
    @media screen and (max-width: 1200px) {
        .bellevue-title {
            font-size: 3.2rem;
        }
        .services-grid-bellevue,
        .testimonials-grid,
        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stats-grid-bellevue,
        .key-points-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .features-grid-bellevue {
            grid-template-columns: 1fr;
        }
        .image-split {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .image-split.reverse {
            direction: ltr;
        }
    }

    @media screen and (max-width: 768px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }
        .bellevue-hero {
            padding: 100px 0 60px;
        }
        .bellevue-title {
            font-size: 2.5rem;
        }
        .section-header h2 {
            font-size: 2.2rem;
        }
        .services-grid-bellevue,
        .testimonials-grid,
        .steps-grid,
        .key-points-grid {
            grid-template-columns: 1fr;
        }
        .stats-grid-bellevue {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .cta-title-bellevue {
            font-size: 2.2rem;
        }
        .btn-secondary-bellevue {
            margin-left: 0;
            margin-top: 15px;
        }
        .image-split-content h3 {
            font-size: 1.6rem;
        }
    }

    @media screen and (max-width: 576px) {
        .bellevue-title {
            font-size: 2rem;
        }
        .section-header h2 {
            font-size: 1.8rem;
        }
        .service-card-bellevue,
        .feature-card-bellevue {
            padding: 25px;
        }
        .stat-number-bellevue {
            font-size: 2.8rem;
        }
    }

    /* Animations */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }

    .text-center {
        text-align: center;
    }
