# Why Choose Bob Weaver

:::raw
<div class="cms-fullwidth">
<style>
    /* =============================================
       WHY CHOOSE BOB WEAVER AUTO
       Brand Orange: #db4504
       Brand Blue:   #201647
       ============================================= */

    /* --- Hero Section --- */
    .why-hero {
        max-width: 900px;
        margin: 0 auto 30px;
    }
    .why-hero h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #201647;
        margin-bottom: 8px;
    }
    .why-hero-divider {
        width: 80px;
        height: 4px;
        background: #db4504;
        margin-bottom: 24px;
        border-radius: 2px;
    }
    .why-hero-img {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 18px rgba(0,0,0,0.10);
    }
    .why-hero-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* --- Quick-Link Buttons --- */
    .why-quick-links {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 45px;
        margin-top: 5px;
    }
    .why-quick-btn {
        display: inline-block;
        background: #201647;
        color: #fff !important;
        font-size: 1rem;
        font-weight: 700;
        padding: 14px 36px;
        border-radius: 6px;
        text-decoration: none !important;
        text-align: center;
        min-width: 200px;
        transition: background-color 0.25s ease, transform 0.15s ease;
    }
    .why-quick-btn:hover {
        background: #160f30;
        transform: translateY(-2px);
    }
    .why-quick-btn--orange {
        background: #db4504;
    }
    .why-quick-btn--orange:hover {
        background: #b83a03;
    }

    /* --- Benefits Intro --- */
    .why-benefits-intro {
        text-align: center;
        max-width: 750px;
        margin: 0 auto 35px;
    }
    .why-benefits-intro h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #201647;
        margin-bottom: 8px;
    }
    .why-benefits-intro p {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 20px;
    }

    /* --- Orange Callout Banner --- */
    .why-callout {
        background: #db4504;
        color: #fff;
        border-radius: 8px;
        padding: 24px 30px;
        margin-top: 10px;
    }
    .why-callout p {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #fff;
        margin: 0;
    }
    .why-callout strong {
        color: #fff;
    }

    /* --- Benefits Header --- */
    .why-benefits-header {
        text-align: center;
        max-width: 650px;
        margin: 0 auto 25px;
    }
    .why-benefits-header p {
        font-size: 1.02rem;
        color: #555;
        line-height: 1.6;
    }

    /* --- Benefits Grid --- */
    .why-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto 45px;
    }
    /* Center the last row of 2 cards */
    .why-benefits-grid .why-benefit-card:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
        margin-right: 10px;
    }
    .why-benefits-grid .why-benefit-card:nth-child(5) {
        grid-column: 2 / 3;
        justify-self: start;
        margin-left: 10px;
    }

    /* --- Benefit Card --- */
    .why-benefit-card {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-top: 3px solid #db4504;
        border-radius: 8px;
        padding: 28px 20px 24px;
        text-align: center;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
        max-width: 230px;
        width: 100%;
    }
    .why-benefit-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        transform: translateY(-3px);
    }

    /* --- Benefit Icon --- */
    .benefit-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        color: #db4504;
    }
    .benefit-icon svg {
        width: 100%;
        height: 100%;
    }

    /* --- Benefit Title --- */
    .why-benefit-card h4 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #201647;
        line-height: 1.35;
        margin: 0;
    }

    /* --- Closing CTA --- */
    .why-closing {
        max-width: 750px;
        margin: 0 auto 35px;
    }
    .why-closing h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #201647;
        margin-bottom: 8px;
    }
    .why-closing-divider {
        width: 80px;
        height: 4px;
        background: #db4504;
        margin-bottom: 16px;
        border-radius: 2px;
    }
    .why-closing p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 12px;
    }

    /* --- Disclaimers --- */
    .why-disclaimers {
        max-width: 800px;
        margin: 0 auto 50px;
        padding-top: 25px;
        border-top: 1px solid #e0e0e0;
    }
    .why-disclaimers p {
        font-size: 0.82rem;
        line-height: 1.55;
        color: #888;
        margin-bottom: 8px;
    }
    .why-disclaimers em {
        font-style: italic;
    }
    .why-sms-consent {
        margin-top: 16px;
        color: #333 !important;
        font-size: 0.82rem !important;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .why-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .why-benefits-grid .why-benefit-card:nth-child(4),
        .why-benefits-grid .why-benefit-card:nth-child(5) {
            grid-column: auto;
            justify-self: auto;
            margin: 0;
        }
        .why-benefit-card {
            max-width: 100%;
        }
        .why-quick-btn {
            min-width: 160px;
            padding: 12px 24px;
            font-size: 0.92rem;
        }
    }
    @media (max-width: 480px) {
        .why-benefits-grid {
            grid-template-columns: 1fr;
            max-width: 250px;
        }
        .why-quick-links {
            flex-direction: column;
            align-items: center;
        }
        .why-hero h2,
        .why-closing h2 {
            font-size: 1.5rem;
        }
    }
</style>
<div class="commonpage-main-section" id="why-choose-page">
    <div class="container">

        
        
        
        <div class="why-hero">
            <h2>Why Buy At Bob Weaver Auto</h2>
            <div class="why-hero-divider"></div>
            <div class="why-hero-img">
                <img src="https://storage.googleapis.com/savvy-images/bob-weaver/whychoosebobweaver.webp" alt="Why Choose Bob Weaver Auto - All The Benefits After You Buy">
            </div>
        </div>

        
        
        
        <div class="why-quick-links">
            <a href="/new" class="why-quick-btn">New Inventory</a>
            <a href="/used" class="why-quick-btn">Pre-Owned Inventory</a>
            <a href="/monthly-specials" class="why-quick-btn why-quick-btn--orange">Special Offers</a>
        </div>

        
        
        
        <div class="why-benefits-intro">
            <h2>All the BENEFITS After You Buy!</h2>
            <p>Everyone looks for low prices when choosing a dealership to buy from.</p>
            <div class="why-callout">
                <p>While we agree, price is important, <strong>Bob Weaver Auto believes in giving you savings that go beyond the initial sale!</strong></p>
            </div>
        </div>

        
        
        
        <div class="why-benefits-header">
            <p>Our benefits will keep you and your wallet happy for years to come with great bonus features for new vehicles like:</p>
        </div>
        <div class="why-benefits-grid">

            <div class="why-benefit-card">
                <div class="benefit-icon">
                    <span class="bw-emoji" aria-hidden="true">🎁</span>
                </div>
                <h4>Lifetime Loaner Vehicles</h4>
            </div>

            <div class="why-benefit-card">
                <div class="benefit-icon">
                    <span class="bw-emoji" aria-hidden="true">🎁</span>
                </div>
                <h4>Priority Appointments</h4>
            </div>

            <div class="why-benefit-card">
                <div class="benefit-icon">
                    <span class="bw-emoji" aria-hidden="true">🎁</span>
                </div>
                <h4>Lifetime State Inspections</h4>
            </div>

            <div class="why-benefit-card">
                <div class="benefit-icon">
                    <span class="bw-emoji" aria-hidden="true">🎁</span>
                </div>
                <h4>Online Express Shopping</h4>
            </div>

            <div class="why-benefit-card">
                <div class="benefit-icon">
                    <span class="bw-emoji" aria-hidden="true">🎁</span>
                </div>
                <h4>A Reputation You Can Trust</h4>
            </div>

        </div>

        
        
        
        <div class="why-closing">
            <h2>Why Go Anywhere Else?</h2>
            <div class="why-closing-divider"></div>
            <p>Bob Weaver Auto has you covered with savings from the minute you walk into our dealership to years down the road.</p>
            <p>It's why more drivers in Pottsville and beyond choose us and you should, too! Take a test drive at Bob Weaver Auto today!</p>
        </div>

        
        
        
        <div class="why-disclaimers">
            <p><em>Lifetime Loaner Vehicles / To Qualify for loaner vehicles, you must make an appointment to ensure availability. Other restrictions may apply. See dealer for complete details.</em></p>
            <p><em>Priority Appointments / You must make an appointment with an appointment coordinator or an advisor to ensure availability. Other restrictions may apply. See dealer for complete details.</em></p>
            <p><em>Lifetime State Inspections / Applies to vehicle purchased at Bob Weaver Auto. State Inspection must be scheduled and completed at Bob Weaver Auto.</em></p>
            <p><em>Online Express Shopping / Parts/other vehicles can be bought online and delivered up to 60 miles from the dealership. Other restrictions may apply. See dealer for complete details.</em></p>
            <p><em>A Reputation You Can Trust / A family run and operated business for over 38 years, with a 4.7 star rating on Google. We are the highest rated car dealer ship in Schuylkill County.</em></p>
            <p class="why-sms-consent"><strong>CONSENT TO RECEIVE TEXT MESSAGES</strong> By submitting my cell phone number to the Dealership, I agree to receive text messages, and phone calls, which may be recorded and/or sent using automated dialing equipment or software from Bob Weaver Auto and its affiliates in the future, unless I opt-out from such communications. I understand that my consent to be contacted is not a requirement to purchase any product or service and that I can opt-out at any time. I agree to pay my mobile service provider's text messaging rates, if applicable.</p>
        </div>

    </div>
</div>
<style>
.why-quick-btn{color:#fff !important}
.bw-emoji{line-height:1;display:inline-flex;align-items:center;justify-content:center}
.benefit-icon .bw-emoji{font-size:28px}
</style>
</div>
:::