# Mission Statement

:::raw
<div class="cms-fullwidth">
<div class="article"><style>
  /* =============================================
     MISSION STATEMENT PAGE
     Brand Orange: #db4504
     Brand Blue:   #201647
     ============================================= */

  /* --- Content Container --- */
  #mission-statement-page .article {
    max-width: 900px;
    margin: 0 auto;
  }

  /* --- Hero Image --- */
  .mission-hero-img {
    margin-bottom: 35px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0,0,0,0.10);
  }
  .mission-hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* --- Section Headings --- */
  .mission-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #201647;
    margin-bottom: 8px;
  }
  .mission-section h3:first-of-type {
    font-size: 2rem;
  }

  /* --- Orange Divider (after main heading) --- */
  .mission-divider {
    width: 80px;
    height: 4px;
    background: #db4504;
    margin-bottom: 18px;
    border-radius: 2px;
  }

  /* --- Body Text --- */
  .mission-section p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
  }

  /* --- Vision Quote --- */
  .mission-section .vision-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    padding-left: 18px;
    border-left: 4px solid #db4504;
  }

  /* --- Core Values List --- */
  .mission-section .values-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }
  .mission-section .values-list li {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f0f0f0;
  }
  .mission-section .values-list li:last-child {
    border-bottom: none;
  }
  .mission-section .values-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #db4504;
    border-radius: 50%;
  }

  /* --- Responsive --- */
  @media (max-width: 576px) {
    .mission-section h3:first-of-type {
      font-size: 1.5rem;
    }
    .mission-section h3 {
      font-size: 1.3rem;
    }
    .mission-section p,
    .mission-section .values-list li {
      font-size: 0.98rem;
    }
  }
</style>

<section class="mission-section">

<div class="mission-hero-img">
<img src="https://storage.googleapis.com/savvy-images/bob-weaver/bobweaver-dealership.avif" alt="Bob Weaver Auto Dealership - Pottsville, PA">
</div>

<h3>The Weaver Mission:</h3>
<div class="mission-divider"></div>
<p>To satisfy Schuylkill County's transportation needs in a way that provides an exceptional value proposition for our customer's brings honor to Jesus Christ and provides enough profit to enable us to reinvest in our business, our people, and our community.</p>

<h3>Our Vision:</h3>
<p class="vision-quote">"The Way You Want To Be Treated, Every Time."</p>

<h3>Our Core Values:</h3>
<ul class="values-list">
<li>We will bring honor to Christ by our actions and our attitudes.</li>
<li>We will act with integrity during every interaction.</li>
<li>We treat our coworkers with recognition that work is not the most important issue in life.</li>
<li>We will run our business in a way that produces a profit which enables reinvestment.</li>
<li>We will actively contribute our time, treasures and talents to our community.</li>
</ul>

</section></div>
</div>
:::