/* Container widths */
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/* Uways Custom CSS */
.transparent {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}
.mr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  width: 100%;
  box-sizing: border-box;
  min-height: 80px;
}

#logo {
  flex: 0 0 200px;
} /* 给Logo固定宽度或比例 */
.mr-header-left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mr-header-right {
  flex: 0 0 200px;
  display: flex;
  justify-content: flex-end;
}

#logo img {
  display: block;
  height: auto;
  width: 90px;
}

.mr-header ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.mr-header ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mr-header ul li:before {
  content: none !important;
} /* 移除某些主题可能添加的伪元素点 */

.menu-item {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.menu-item:hover {
  color: #e63946;
}

.mr-header-right #mainmenu {
  justify-content: flex-end;
}

.mr-reserve a {
  background: #e63946 !important;
  color: #fff !important;
  padding: 12px 25px !important;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: none;
  transition: background 0.3s;
}

.mr-reserve a:hover {
  background: #d62839 !important;
}

.mr-reserve svg {
  width: 20px;
  height: 20px;
}

/* 移动端适配 */
.mr-header-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  height: 60px;
}

/* 左侧方块按钮 */
.menu_side_area {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #333;
  border-radius: 4px;
}

#menu-btn {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}
#menu-btn:before,
#menu-btn:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
#menu-btn:before {
  top: -6px;
}
#menu-btn:after {
  top: 6px;
}

/* 侧边栏菜单 */
.mr-header-menu {
  position: fixed;
  top: 0;
  left: -280px; /* 初始隐藏在左侧 */
  width: 280px;
  height: 100vh;
  background: #111;
  z-index: 1002;
  transition: left 0.3s ease;
  padding-top: 60px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}

.mr-header-menu.open {
  left: 0;
}

/* 遮罩层 */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}
.menu-overlay.show {
  display: block;
}

.mr-header-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mr-header-menu ul li {
  border-bottom: 1px solid #222;
}
.mr-header-menu ul li a {
  display: block;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

/* 搜索区域容器不铺满 */
.mr-tab-container {
  max-width: 900px;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  /* background: #fff;  */
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);  */
}

/* 按钮颜色修改为 #d62839 且文字居中 */
.mr-tab {
  flex: 1;
  justify-content: center;
  border: none;
  background: #f5f5f5;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s;
  color: #333;
}
.mr-tab.mr-active {
  background: #d62839 !important;
  color: #fff !important;
}
.mr-tab.mr-active svg path {
  stroke: #fff;
}

.mr-button {
  background: #d62839 !important;
}
.mr-button:hover {
  background: #b51d2b !important;
}

@media (max-width: 992px) {
  .mr-header {
    display: none !important;
  }
  .mr-header-mobile {
    display: flex !important;
  }
  .mr-tab-container {
    margin-top: 20px;
    width: 95%;
    padding: 15px;
  }
  .mr-form-main {
    flex-direction: column;
  }
  .mr-form {
    flex-direction: column;
    width: 100%;
  }
}

/* Swiper & Video */
.youtube-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}
.youtube-container iframe {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 155%;
  z-index: 1;
  object-fit: cover;
}

/* Tabs */
.mrbook {
  position: relative;
}
.mrbook .container {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 100;
}

.mr-tab-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.mr-tabs {
  display: flex;
  width: fit-content;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.mr-tab {
  border: none;
  background: transparent;
  padding: 12px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mr-tab svg path {
  stroke: #fff;
}
.mr-tab.mr-active {
  background: #fff;
  color: #000;
}
.mr-tab.mr-active svg path {
  stroke: #000;
}

/* Form */
.contact_form {
  background: #fff;
  padding: 10px;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.mr-form-main {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.mr-form {
  display: flex;
  flex: 1;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
}
.mr-form-group {
  flex: 1;
  border-right: 1px solid #eee;
}
.mr-form-group:last-child {
  border-right: none;
}
.mr-input {
  width: 100%;
  padding: 15px;
  border: none;
  font-size: 14px;
  outline: none;
  background: #fff;
  height: 100%;
  box-sizing: border-box;
}
.mr-button {
  background: #d62839;
  color: #fff;
  border: none;
  padding: 0 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.3s;
}
.mr-button:hover {
  background: #b51d2b;
}

.mr-add-stop-link {
  padding: 10px 5px 0;
}
.mr-add-stop-link a {
  color: #d62839 !important;
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mr-add-stop-link a:hover {
  color: #b51d2b !important;
}

@media (max-width: 992px) {
  .mrbook .container {
    position: relative;
    bottom: 0;
    padding: 20px;
  }
  .mr-tab-container {
    margin-top: 0;
    width: 100%;
  }
  .mr-form-main {
    flex-direction: column;
    gap: 15px;
  }
  .mr-form {
    flex-direction: column;
    border: none;
    margin-right: 0;
  }
  .mr-form-group {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .mr-button {
    padding: 15px;
    width: 100%;
  }
}

/* Services */
#mr-services {
  padding: 60px 0;
  background: #000;
  color: #fff;
}
.mr-services-item {
  text-align: center;
}
.mr-services-icon img {
  width: 50px;
  margin-bottom: 20px;
}
.mr-services-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Footer */
#footer-top {
  background: #111;
  color: #fff;
  padding: 40px 0;
}
.ftop-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.ftop-item {
  border: 1px solid #333;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}
.ftop-item:hover {
  border-color: #d62839;
  background: rgba(214, 40, 57, 0.05);
}
.ftop-item span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
#footer-top a {
  text-decoration: none;
}

.mrf-footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid #222;
}
.mrf-footer-logo img {
  width: 120px;
  margin-bottom: 30px;
}
.mrf-footer-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.mrf-footer-column {
  flex: 1;
}
.mrf-footer-column h4 {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.mrf-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mrf-footer-column ul li {
  margin-bottom: 12px;
}
.mrf-footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.mrf-footer-column ul li a:hover {
  color: #d62839;
}

.mrf-social-links {
  display: flex;
  gap: 15px;
}
.mrf-social-links a {
  width: 35px;
  height: 35px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.mrf-social-links a:hover {
  background: #d62839;
}

.mrf-footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.mrf-footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 14px;
}
.mrf-footer-privacy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.mrf-footer-privacy li {
  position: relative;
}
.mrf-footer-privacy li:not(:last-child):after {
  content: "|";
  color: #333;
  margin-left: 15px;
}
.mrf-footer-privacy li a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.mrf-footer-privacy li a:hover {
  color: #fff;
}

.mbl-footer {
  display: none;
}

@media (max-width: 992px) {
  .mrf-footer-links {
    display: none;
  }
  .mbl-footer {
    display: block;
    margin-bottom: 40px;
  }
  .mbl-footer .mrf-footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .mbl-footer .mrf-social-links {
    justify-content: center;
    margin-top: 30px;
  }
  .mrf-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* Our Services */
#mr-our-services {
  padding: 80px 0;
  background: #fff;
}
.mr-our-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}
.mr-our-services-item {
  margin-bottom: 40px;
}
.mr-our-services-img img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}
.mr-our-services-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.mr-our-services-content {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.mr-our-services-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* Vehicles */
#mr-vehicles {
  padding: 80px 0;
  background: #f9f9f9;
}
.mr-car-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.mr-car-img {
  width: 100%;
  margin-bottom: 20px;
}
.mr-car-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.mr-car-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.mr-car-info {
  display: flex;
  gap: 15px;
}
.mr-car-seats,
.mr-car-luggage {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.mr-car-description {
  color: #777;
  font-size: 14px;
}

/* Locations */
#mr-location {
  padding: 80px 0;
  background: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.location-card a {
  display: block;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  text-align: center;
  transition: all 0.3s;
}
.location-card a:hover {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

/* FAQ */
#mr-faq {
  padding: 80px 0;
  background: #f9f9f9;
}
.accordion-section {
  border-top: 1px solid #eee;
}
.accordion-section-title {
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.accordion-section-title::after {
  content: "+";
  font-size: 20px;
}
.accordion-section-title.active::after {
  content: "-";
}
.accordion-section-content {
  padding: 20px 0;
  display: none;
  color: #555;
  line-height: 1.6;
}
/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class^="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Mobile: 1 item per row for services */
@media (max-width: 575px) {
  #mr-services .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #mr-services .row {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
  }
}

.container,
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* ========================================
   Page Templates Styles
   ======================================== */

/* Page Header */
.page-header {
  background: #000;
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #fff;
}

.page-subtitle {
  font-size: 18px;
  color: #ccc;
  margin: 0;
}

/* Service Page Styles */
.service-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content-section {
  padding: 80px 0;
  background: #fff;
}

.service-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.service-content p {
  margin-bottom: 20px;
}

.service-cta-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.service-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.service-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Location Page Styles */
.location-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.location-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.location-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.location-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location-hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

.location-content-section {
  padding: 80px 0;
  background: #fff;
}

.location-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.location-services-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #000;
}

.location-service-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.location-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.location-service-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: #d62839;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.service-link:hover {
  color: #b51d2b;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-info-wrapper {
  padding-right: 40px;
}

.contact-info-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.contact-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.contact-details a {
  display: block;
  color: #666;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #d62839;
}

.contact-form-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
}

.contact-form .form-row {
  margin-bottom: 20px;
}

.contact-form .form-group {
  width: 100%;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #d62839;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.faq-link-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.faq-link-card {
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-link-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.faq-link-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* Utility Classes */
.mbl-mb-15 {
  margin-bottom: 0;
}

.mbl-mb-30 {
  margin-bottom: 0;
}

.offset-lg-2 {
  margin-left: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .page-header {
    padding: 60px 0 40px;
  }

  .page-title {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .service-hero,
  .location-hero {
    height: 400px;
  }

  .service-hero-title,
  .location-hero-title {
    font-size: 40px;
  }

  .location-hero-subtitle {
    font-size: 16px;
  }

  .service-content-section,
  .location-content-section,
  .contact-section,
  .location-services-section {
    padding: 60px 0;
  }

  .service-cta-section {
    padding: 60px 0;
  }

  .service-cta h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-info-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .faq-link-card {
    padding: 40px 20px;
  }

  .faq-link-card h3 {
    font-size: 24px;
  }

  .mbl-mb-15 {
    margin-bottom: 15px;
  }

  .mbl-mb-30 {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
}

@media (max-width: 575px) {
  .service-hero,
  .location-hero {
    height: 300px;
  }

  .service-hero-title,
  .location-hero-title {
    font-size: 32px;
  }

  .page-title {
    font-size: 28px;
  }

  .service-content,
  .location-content {
    font-size: 16px;
  }

  .location-service-card {
    padding: 30px 20px;
  }
}
