﻿:root {
  --ink: #17212f;
  --muted: #5e6977;
  --line: #d9e0e7;
  --surface: #ffffff;
  --soft: #f3f6f8;
  --red: #bf1f2f;
  --red-dark: #8f1422;
  --yellow: #f4b73f;
  --green: #237a56;
  --shadow: 0 18px 45px rgba(23, 33, 47, 0.16);
  --shadow-soft: 0 8px 22px rgba(23, 33, 47, 0.09);
  --soft-blue: #edf3f8;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #f8fafc 42%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 183, 63, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 9px 18px;
  color: #ffffff;
  background: #111820;
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 62px;
  object-fit: contain;
}

.brand-logo {
  display: block;
  width: 185px;
  max-width: 42vw;
  height: auto;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: #283545;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 160ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.cart-button,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.cart-button {
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

.hero,
.home-hero,
.parts-hero,
.vehicles-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.86), rgba(10, 16, 24, 0.3)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.88), rgba(10, 16, 24, 0.28)),
    url("assets/parts/home-page-img.JPG")
      center / cover;
}

.parts-hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.88), rgba(10, 16, 24, 0.34)),
    url("https://images.unsplash.com/photo-1592838064575-70ed626d3a0e?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.vehicles-hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.88), rgba(10, 16, 24, 0.3)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.hero-overlay {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 72px;
  color: #ffffff;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.home-hero h1,
.parts-hero h1,
.vehicles-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p,
.home-hero p,
.parts-hero p,
.vehicles-hero p {
  max-width: 620px;
  color: #e7edf4;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.primary {
  color: #ffffff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.button.ghost {
  color: var(--ink);
  background: var(--soft-blue);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  background: var(--surface);
  border: 1px solid rgba(217, 224, 231, 0.75);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-links a {
  padding: 28px;
  border-right: 1px solid var(--line);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.quick-links a:hover {
  background: #fbfcfe;
  transform: translateY(-2px);
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links strong,
.quick-links span {
  display: block;
}

.quick-links span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 86px auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.stats-grid div {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: 34px;
}

.stats-grid span {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.feature-section {
  margin-top: 74px;
}

.inventory-grid,
.department-grid,
.contact-grid,
.welcome-section {
  display: grid;
  gap: 20px;
}

.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inventory-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.inventory-media {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
  background: #253141;
}

.inventory-media.isuzu {
  background: linear-gradient(135deg, #bc1c2b, #262f3a);
}

.inventory-media.freightliner {
  background: linear-gradient(135deg, #1d2836, #657483);
}

.inventory-media.western {
  background: linear-gradient(135deg, #101720, #b88939);
}

.inventory-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.inventory-body h3,
.department-grid h3 {
  margin: 0;
  font-size: 22px;
}

.inventory-body p,
.department-grid p {
  margin: 0;
}

.inventory-body strong {
  font-size: 24px;
}

.welcome-section {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: stretch;
}

.video-panel,
.department-grid article,
.contact-grid > div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.video-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.video-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111820 url("https://img.youtube.com/vi/JWqjs7xiLCI/maxresdefault.jpg") center / cover no-repeat;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.department-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.department-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.specials-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-left: 6px solid var(--red);
  background: var(--soft);
}

.specials-band h2 {
  max-width: 760px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.contact-grid > div {
  padding: 26px;
}

.contact-list,
.hours-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-list li,
.hours-list li {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.shop-tools {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.vehicle-tools {
  max-width: 560px;
  margin-bottom: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #ffffff;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #9bacbd;
  box-shadow: 0 0 0 4px rgba(151, 166, 184, 0.18);
  outline: 0;
}

textarea {
  resize: vertical;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 372px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  border-color: #bdc9d5;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(23, 33, 47, 0.13);
}

.vehicle-card {
  display: grid;
  grid-template-rows: 150px 1fr auto;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.vehicle-card:hover {
  border-color: #bdc9d5;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(23, 33, 47, 0.13);
}

.vehicle-media {
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(191, 31, 47, 0.88), rgba(17, 24, 32, 0.95)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=900&q=80")
      center / cover;
  font-size: 44px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.vehicle-body {
  padding: 18px;
}

.vehicle-body h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.18;
}

.vehicle-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.vehicle-details div {
  display: grid;
  gap: 4px;
}

.vehicle-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.vehicle-footer strong {
  font-size: 22px;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 138px;
  color: #ffffff;
  background: linear-gradient(135deg, #253141, #566270);
  font-size: 46px;
  font-weight: 900;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 18px;
}


.product-card.out-of-stock {
  opacity: 0.55;
  background: #f1f1f1;
  filter: grayscale(0.7);
}

.product-card.out-of-stock .product-media {
  background: #8b929b;
}

.product-card.out-of-stock .product-media img {
  filter: grayscale(0.8);
}

.product-card.out-of-stock .button.primary {
  background: #9ca3af;
  cursor: not-allowed;
}

.stock-tag {
  color: #6b111b;
  background: #f3d4d8;
}

.in-stock-tag {
  color: var(--green);
  background: #e2f3eb;
}














.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  padding: 5px 8px;
  color: var(--red-dark);
  background: #ffe9ec;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.service-band {
  padding: 40px;
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.service-band > * {
  max-width: 540px;
}

.compact-form,
.checkout-form {
  display: grid;
  gap: 16px;
}

.status-section {
  padding-bottom: 40px;
}

.lookup-form {
  display: flex;
  gap: 12px;
  max-width: 620px;
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 800;
}

.admin-section {
  max-width: 1180px;
}

.admin-auth-form {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-summary[hidden] {
  display: none;
}

.admin-summary div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.admin-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.admin-summary strong {
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.admin-search {
  max-width: 520px;
  margin-bottom: 16px;
}

.admin-search input {
  width: 100%;
}

.admin-order-list {
  display: grid;
  gap: 16px;
}

.admin-order {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 20px;
  overflow: hidden;
}

.admin-order-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.admin-order-header > div {
  min-width: 0;
}

.admin-order-header h2 {
  margin: 8px 0 0;
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.admin-order-header strong {
  white-space: nowrap;
}

.admin-order-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.admin-order-details div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.admin-order-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.admin-order-details dd {
  margin: 0;
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-notes {
  margin: 0 0 14px;
  padding: 12px;
  background: #fff8e8;
  border: 1px solid #ead8aa;
  border-radius: 4px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-items-wrap {
  overflow-x: auto;
}

.admin-items {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: fixed;
}

.admin-items th:nth-child(1),
.admin-items td:nth-child(1) {
  width: 22%;
}

.admin-items th:nth-child(3),
.admin-items td:nth-child(3) {
  width: 72px;
  text-align: right;
}

.admin-items th:nth-child(4),
.admin-items td:nth-child(4) {
  width: 96px;
  text-align: right;
}

.admin-items th,
.admin-items td {
  border-top: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: end;
  background: rgba(10, 16, 24, 0.45);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(460px, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  color: #ffffff;
  background: var(--ink);
}

.cart-items {
  overflow: auto;
  padding: 18px;
}

.cart-line {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0;
  font-size: 17px;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  border-radius: 4px;
}

.line-total {
  min-width: 82px;
  text-align: right;
}

.remove-button {
  border: 0;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.cart-summary small {
  color: var(--muted);
  line-height: 1.45;
}

.checkout-dialog {
  width: min(720px, calc(100% - 24px));
  border: 0;
  border-radius: 6px;
  padding: 0;
  box-shadow: var(--shadow);
}

.checkout-dialog::backdrop {
  background: rgba(10, 16, 24, 0.48);
}

.checkout-form {
  padding: 0 20px 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 28px 20px;
  color: #ffffff;
  background: #111820;
}

@media (max-width: 860px) {
  .top-bar,
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .quick-links,
  .two-column,
  .shop-tools,
  .product-grid,
  .vehicle-grid,
  .form-grid,
  .stats-grid,
  .inventory-grid,
  .welcome-section,
  .department-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-links a,
  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .home-hero,
  .parts-hero,
  .vehicles-hero {
    min-height: 560px;
  }

  .section-heading,
  .lookup-form,
  .admin-auth-form,
  .specials-band {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-auth-form {
    grid-template-columns: 1fr;
  }

  .admin-order {
    padding: 14px;
  }

  .admin-order-header strong {
    white-space: normal;
  }

  .admin-order-details {
    grid-template-columns: 1fr;
  }

  .admin-items,
  .admin-items thead,
  .admin-items tbody,
  .admin-items tr,
  .admin-items th,
  .admin-items td {
    display: block;
  }

  .admin-items thead {
    display: none;
  }

  .admin-items tr {
    border-top: 1px solid var(--line);
    padding: 8px 0;
  }

  .admin-items td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    border-top: 0;
    padding: 6px 0;
    text-align: left;
  }

  .admin-items td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .admin-items th:nth-child(1),
  .admin-items td:nth-child(1),
  .admin-items th:nth-child(3),
  .admin-items td:nth-child(3),
  .admin-items th:nth-child(4),
  .admin-items td:nth-child(4) {
    width: auto;
    text-align: left;
  }

  .service-band {
    padding: 40px 20px;
  }
}
