/* Recovery Location Page Generator - v1.0.6 */

.rlpg-city-page,
.rlpg-city-page * {
  box-sizing: border-box;
}

.rlpg-city-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  font-family: inherit;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
}

.rlpg-inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.rlpg-narrow {
  max-width: 950px;
}

.rlpg-area-section {
  width: 100%;
  padding: 120px 20px 80px;
  background: #ffffff;
}

.rlpg-area-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.rlpg-area-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 26px;
  color: #222222;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.rlpg-area-content p,
.rlpg-text-block p,
.rlpg-quote-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 22px;
  font-weight: 400;
}

.rlpg-map {
  width: 100%;
  min-height: 520px;
  background: #f4f4f4;
  overflow: hidden;
}

.rlpg-map iframe {
  display: block;
  width: 100%;
  height: 520px;
}

.rlpg-text-section {
  width: 100%;
  padding: 75px 20px;
  background: #ffffff;
}

.rlpg-quote-section {
  width: 100%;
  padding: 75px 20px;
  background: #ffffff;
}

.rlpg-highlight-section {
  width: 100%;
  padding: 75px 20px;
  background: #f4f4f4;
}

.rlpg-highlight-box {
  max-width: 950px;
  text-align: left;
}

.rlpg-final-section {
  width: 100%;
  padding: 75px 20px;
  background: #ffffff;
}

.rlpg-text-block h2,
.rlpg-quote-section h2 {
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 24px;
  color: #222222;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rlpg-checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
}

.rlpg-checklist li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
}

.rlpg-checklist li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0;
  color: #d50000 !important;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
}

.rlpg-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.rlpg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 235px;
  height: 52px;
  padding: 0 34px;
  background: #07008b;
  color: #ffffff !important;
  border: 2px solid #07008b;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
  transition: 0.25s ease;
}

.rlpg-button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.rlpg-button:hover {
  background: #d50000;
  border-color: #d50000;
  color: #ffffff !important;
}

.rlpg-button:hover span {
  transform: translateX(5px);
}

.rlpg-button-outline {
  background: transparent;
  color: #07005f !important;
  border-color: #07005f;
}

.rlpg-button-outline:hover {
  background: #07008b;
  border-color: #07008b;
  color: #ffffff !important;
}

.rlpg-faq-section {
  width: 100%;
  padding: 75px 20px;
  background: #ffffff;
}

.rlpg-faq-inner {
  max-width: 950px;
  text-align: center;
}

.rlpg-faq-section h2 {
  font-size: 44px;
  line-height: 1.12;
  margin: 0 0 34px;
  color: #222222;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rlpg-faq-list {
  width: 100%;
}

.rlpg-faq-item {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  margin-bottom: 14px;
  text-align: left;
}

.rlpg-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 70px 22px 38px;
  position: relative;
  font-size: 17px;
  line-height: 1.45;
  color: #07005f;
  font-weight: 800;
}

.rlpg-faq-item summary::-webkit-details-marker {
  display: none;
}

.rlpg-faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  color: #07005f;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  transition: 0.25s ease;
}

.rlpg-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.rlpg-faq-item p {
  padding: 0 38px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

.rlpg-faq-actions {
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 1100px) {
  .rlpg-area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rlpg-area-content h1 {
    font-size: 52px;
  }

  .rlpg-text-block h2,
  .rlpg-quote-section h2,
  .rlpg-faq-section h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .rlpg-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rlpg-area-section,
  .rlpg-text-section,
  .rlpg-quote-section,
  .rlpg-highlight-section,
  .rlpg-final-section,
  .rlpg-faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rlpg-area-section {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .rlpg-text-section,
  .rlpg-quote-section,
  .rlpg-highlight-section,
  .rlpg-final-section,
  .rlpg-faq-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .rlpg-area-content h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .rlpg-text-block h2,
  .rlpg-quote-section h2,
  .rlpg-faq-section h2 {
    font-size: 30px;
  }

  .rlpg-area-content p,
  .rlpg-text-block p,
  .rlpg-quote-section p,
  .rlpg-checklist li {
    font-size: 15.5px;
  }

  .rlpg-map,
  .rlpg-map iframe {
    min-height: 350px;
    height: 350px !important;
  }

  .rlpg-actions {
    gap: 14px;
  }

  .rlpg-button {
    width: 100%;
    min-width: 0;
  }

  .rlpg-faq-item summary {
    padding: 18px 54px 18px 20px;
    font-size: 15.5px;
  }

  .rlpg-faq-item summary::after {
    right: 20px;
  }

  .rlpg-faq-item p {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}


/* v1.0.8 fixes */

.rlpg-city-page {
  position: relative;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: clip !important;
}

.rlpg-city-page .rlpg-text-section {
  background: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section > .rlpg-inner,
.rlpg-city-page .rlpg-text-section > .rlpg-inner.rlpg-narrow,
.elementor .rlpg-city-page .rlpg-text-section > .rlpg-inner.rlpg-narrow {
  max-width: 1050px !important;
  background: #07008b !important;
  padding: 55px 60px !important;
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section h2,
.rlpg-city-page .rlpg-text-section .rlpg-text-block h2 {
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section p,
.rlpg-city-page .rlpg-text-section .rlpg-text-block p {
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-button {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #07005f !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-button:hover {
  background: #d50000 !important;
  border-color: #d50000 !important;
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-button-outline {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-button-outline:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #07005f !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-text-section > .rlpg-inner,
  .rlpg-city-page .rlpg-text-section > .rlpg-inner.rlpg-narrow,
  .elementor .rlpg-city-page .rlpg-text-section > .rlpg-inner.rlpg-narrow {
    padding: 40px 24px !important;
  }
}


/* v1.2.1 dynamic design settings */
.rlpg-city-page {
  font-family: var(--rlpg-font-family, inherit) !important;
  color: var(--rlpg-text-color, #333333) !important;
}

.rlpg-city-page h1,
.rlpg-city-page h2,
.rlpg-area-content h1,
.rlpg-text-block h2,
.rlpg-quote-section h2,
.rlpg-faq-section h2 {
  color: var(--rlpg-heading-color, #222222) !important;
}

.rlpg-area-content p,
.rlpg-text-block p,
.rlpg-quote-section p,
.rlpg-checklist li,
.rlpg-faq-item p {
  color: var(--rlpg-text-color, #333333) !important;
}

.rlpg-button {
  background: var(--rlpg-primary-color, #07008b) !important;
  border-color: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-button:hover {
  background: var(--rlpg-button-hover-color, #d50000) !important;
  border-color: var(--rlpg-button-hover-color, #d50000) !important;
}

.rlpg-button-outline {
  background: transparent !important;
  color: var(--rlpg-primary-color, #07008b) !important;
  border-color: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-button-outline:hover {
  background: var(--rlpg-primary-color, #07008b) !important;
  border-color: var(--rlpg-primary-color, #07008b) !important;
  color: #ffffff !important;
}

.rlpg-text-section > .rlpg-inner,
.rlpg-text-section > .rlpg-inner.rlpg-narrow,
.elementor .rlpg-city-page .rlpg-text-section > .rlpg-inner.rlpg-narrow {
  background: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-text-section h2,
.rlpg-text-section .rlpg-text-block h2,
.rlpg-text-section p,
.rlpg-text-section .rlpg-text-block p {
  color: #ffffff !important;
}

.rlpg-text-section .rlpg-button {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-text-section .rlpg-button:hover {
  background: var(--rlpg-button-hover-color, #d50000) !important;
  border-color: var(--rlpg-button-hover-color, #d50000) !important;
  color: #ffffff !important;
}

.rlpg-text-section .rlpg-button-outline {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.rlpg-text-section .rlpg-button-outline:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-faq-item summary,
.rlpg-faq-item summary::after {
  color: var(--rlpg-primary-color, #07008b) !important;
}


/* v1.2.2 scoped overflow fix */
.rlpg-city-page,
.rlpg-city-page section {
  max-width: 100%;
  overflow-x: clip;
}


/* v1.2.3 red checklist ticks */
.rlpg-city-page .rlpg-checklist li::before,
.rlpg-city-page .rlpg-checklist li:before,
.rlpg-city-page .rlpg-quote-list li::before,
.rlpg-city-page .rlpg-quote-list li:before {
  color: #d50000 !important;
}



/* v1.2.5 quote section image fix */
.rlpg-city-page .rlpg-quote-section .rlpg-inner {
  max-width: 1250px !important;
  position: relative !important;
  display: block !important;
  padding-right: 450px !important;
}

.rlpg-city-page .rlpg-quote-section .rlpg-inner::after {
  content: "";
  position: absolute !important;
  right: 0 !important;
  top: 18px !important;
  width: 360px !important;
  height: 520px !important;
  display: block !important;
  background-image: var(--rlpg-quote-image-url, url('https://glosseo.co.uk/wp-content/uploads/2026/07/front-view-man-checking-his-phone-scaled.jpg')) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.rlpg-city-page .rlpg-quote-section h2 {
  max-width: 760px !important;
}

.rlpg-city-page .rlpg-quote-section p {
  max-width: 760px !important;
}

.rlpg-city-page .rlpg-quote-section .rlpg-checklist {
  max-width: 820px !important;
}

.rlpg-city-page .rlpg-quote-section .rlpg-button,
.rlpg-city-page .rlpg-quote-section a.rlpg-button {
  width: auto !important;
  max-width: max-content !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-quote-section .rlpg-inner {
    padding-right: 0 !important;
  }

  .rlpg-city-page .rlpg-quote-section .rlpg-inner::after {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 420px !important;
    margin-top: 34px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-quote-section .rlpg-inner::after {
    height: 310px !important;
  }

  .rlpg-city-page .rlpg-quote-section .rlpg-button,
  .rlpg-city-page .rlpg-quote-section a.rlpg-button {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* v1.2.8 hero quote form */
.rlpg-city-page .rlpg-hero-with-form {
  background: #ffffff;
}

.rlpg-city-page .rlpg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.rlpg-city-page .rlpg-hero-form-card {
  width: 100%;
  background: #ffffff;
  border: 2px solid var(--rlpg-primary-color, #07008b);
  box-shadow: 0 22px 55px rgba(7, 0, 139, 0.14);
  padding: 28px;
  box-sizing: border-box;
}

.rlpg-city-page .rlpg-hero-form-step {
  margin: 0 0 12px;
  color: var(--rlpg-primary-color, #07008b);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.rlpg-city-page .rlpg-hero-form-card h2 {
  margin: 0 0 10px;
  color: var(--rlpg-heading-color, #222222);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
}

.rlpg-city-page .rlpg-hero-form-card p {
  margin: 0 0 20px;
  color: var(--rlpg-text-color, #333333);
  font-size: 15px;
  line-height: 1.55;
}

.rlpg-city-page .rlpg-hero-quote-form {
  margin: 0;
}

.rlpg-city-page .rlpg-hero-quote-form label {
  display: block;
  margin: 0 0 14px;
  color: var(--rlpg-heading-color, #222222);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rlpg-city-page .rlpg-hero-quote-form input,
.rlpg-city-page .rlpg-hero-quote-form select {
  width: 100%;
  height: 48px;
  margin: 8px 0 0;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  box-sizing: border-box;
  outline: none;
}

.rlpg-city-page .rlpg-hero-quote-form input:focus,
.rlpg-city-page .rlpg-hero-quote-form select:focus {
  border-color: var(--rlpg-primary-color, #07008b);
  box-shadow: 0 0 0 2px rgba(7, 0, 139, 0.08);
}

.rlpg-city-page .rlpg-hero-quote-form input[name="vehicle_reg"] {
  height: 54px;
  background: #ffcc00;
  border: 2px solid var(--rlpg-primary-color, #07008b);
  text-align: center;
  color: #222222;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rlpg-city-page .rlpg-hero-quote-form input[name="vehicle_reg"]::placeholder {
  color: rgba(34, 34, 34, 0.65);
}

.rlpg-city-page .rlpg-hero-quote-form button,
.rlpg-city-page .rlpg-hero-form-call {
  width: 100%;
  min-height: 52px;
  margin: 4px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rlpg-primary-color, #07008b);
  color: #ffffff !important;
  border: 2px solid var(--rlpg-primary-color, #07008b);
  border-radius: 0;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.3px;
  cursor: pointer;
  transition: 0.25s ease;
  box-sizing: border-box;
}

.rlpg-city-page .rlpg-hero-quote-form button:hover,
.rlpg-city-page .rlpg-hero-form-call:hover {
  background: var(--rlpg-button-hover-color, #d50000);
  border-color: var(--rlpg-button-hover-color, #d50000);
}

.rlpg-city-page .rlpg-hero-form-call {
  margin-top: 10px;
  background: #ffffff;
  color: var(--rlpg-primary-color, #07008b) !important;
}

.rlpg-city-page .rlpg-hero-form-call:hover {
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-hero-quote-form small {
  display: block;
  margin: 16px 0 0;
  color: #555555;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.rlpg-city-page .rlpg-map-section {
  padding-top: 0;
  background: #ffffff;
}

.rlpg-city-page .rlpg-map-section .rlpg-map {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rlpg-city-page .rlpg-hero-form-card {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-hero-form-card {
    padding: 22px;
  }

  .rlpg-city-page .rlpg-hero-form-card h2 {
    font-size: 24px;
  }

  .rlpg-city-page .rlpg-hero-quote-form input[name="vehicle_reg"] {
    font-size: 21px;
  }
}


/* v1.2.9 cleaner full-width branded layout */
.rlpg-city-page.rlpg-clean-layout {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: #ffffff;
}

.rlpg-city-page.rlpg-clean-layout section {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-inner {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
  background: #07008a !important;
  padding: 86px 0 !important;
  color: #ffffff !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
  grid-template-columns: minmax(0, 1fr) 390px !important;
  gap: 64px !important;
  align-items: center !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-section-label {
  display: inline-block;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
  color: #ffffff !important;
  max-width: 780px !important;
  margin-bottom: 24px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content p {
  color: #ffffff !important;
  max-width: 760px !important;
  opacity: 0.96;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content .rlpg-button {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #07008a !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content .rlpg-button:hover {
  background: #d50000 !important;
  border-color: #d50000 !important;
  color: #ffffff !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content .rlpg-button-outline {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content .rlpg-button-outline:hover {
  background: #d50000 !important;
  border-color: #d50000 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24) !important;
  padding: 30px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section {
  background: #ffffff !important;
  padding: 78px 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-section .rlpg-narrow,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section .rlpg-narrow,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-inner {
  max-width: 980px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-block h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section h2 {
  color: #07008a !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section {
  background: #f4f4f4 !important;
  padding: 78px 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-box {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06) !important;
  padding: 52px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section {
  background: #ffffff !important;
  padding: 78px 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner {
  background: #f4f4f4 !important;
  padding: 56px !important;
  box-shadow: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-section {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-full,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section .rlpg-map,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section iframe {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  background: transparent !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-section::before,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section::after,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-full::before,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-full::after {
  display: none !important;
  content: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
  background: #f4f4f4 !important;
  padding: 76px 0 !important;
  text-align: center;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card > div {
  padding: 28px;
  border-right: 1px solid #eeeeee;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card > div:last-child {
  border-right: 0;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card strong {
  display: block;
  margin-bottom: 8px;
  color: #07008a;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card a,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card span {
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  font-weight: 700;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-actions {
  justify-content: center;
  margin-top: 32px;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item {
  background: #ffffff !important;
  border: 1px solid #e7e7e7 !important;
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 620px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card {
    grid-template-columns: 1fr;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card > div {
    border-right: 0;
    border-bottom: 1px solid #eeeeee;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page.rlpg-clean-layout .rlpg-inner {
    width: min(100% - 28px, 1180px) !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-text-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-quote-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-final-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-faq-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
    padding: 54px 0 !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-highlight-box,
  .rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner {
    padding: 30px 22px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-map-section iframe {
    height: 300px !important;
  }
}


/* v1.3.0 final clean layout - hero + Swinton-style body */
.rlpg-city-page.rlpg-clean-layout {
  background: #eeeeee !important;
  color: #222222;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
  background: #07008a !important;
  padding: 70px 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
  width: min(1260px, calc(100% - 48px)) !important;
  max-width: 1260px !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 70px !important;
  align-items: center !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-section-label {
  position: relative;
  padding-left: 16px;
  margin-bottom: 18px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #d50000;
  position: absolute;
  left: 0;
  top: 3px;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
  max-width: 760px !important;
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: clamp(44px, 5vw, 78px) !important;
  line-height: 0.98 !important;
  font-weight: 900 !important;
  letter-spacing: -1.5px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-area-content p {
  max-width: 760px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
  opacity: 1 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 30px 75px rgba(0,0,0,0.22) !important;
  padding: 32px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-step {
  color: #07008a !important;
  margin-bottom: 16px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card h2 {
  color: #222222 !important;
  font-size: 32px !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card p {
  color: #333333 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-call {
  display: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta-section {
  background: #eeeeee !important;
  padding: 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section .rlpg-inner {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-section .rlpg-inner {
  padding: 50px 34px 24px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section .rlpg-inner,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section .rlpg-inner {
  padding: 34px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section .rlpg-inner {
  padding: 48px 34px 56px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-block h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section h2 {
  color: #07008a !important;
  font-size: 28px !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-text-block p,
.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section p,
.rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section p,
.rlpg-city-page.rlpg-clean-layout .rlpg-final-section p {
  color: #222222 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
  margin: 0 0 18px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner::after {
  display: none !important;
  content: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner {
  position: static !important;
  padding-right: 34px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-checklist {
  margin: 22px 0 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-checklist li {
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 44px 34px !important;
  background: #07008a !important;
  text-align: center !important;
  box-sizing: border-box;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta h2 {
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  margin: 0 0 10px !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta p {
  max-width: 740px;
  margin: 0 auto 22px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  background: #d50000;
  border: 2px solid #d50000;
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta-button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #07008a !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-section .rlpg-inner {
  padding: 0 !important;
  overflow: hidden !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-full,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-full iframe {
  display: block !important;
  width: 100% !important;
  height: 330px !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-map-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-map-section * {
  box-shadow: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-section h2 {
  text-align: center !important;
  margin-bottom: 28px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item {
  border: 1px solid #e5e5e5 !important;
  border-bottom: 0 !important;
  margin: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item:last-child {
  border-bottom: 1px solid #e5e5e5 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item summary {
  padding: 18px 22px !important;
  color: #07008a !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item summary::after {
  color: #d50000 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-item p {
  padding: 0 22px 20px !important;
  color: #333333 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-faq-actions {
  display: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
  padding-bottom: 70px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section .rlpg-inner {
  text-align: center !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-card {
  box-shadow: none !important;
  border: 1px solid #eeeeee;
}

@media (max-width: 1024px) {
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 620px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    padding: 48px 0 !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    width: min(100% - 28px, 1260px) !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 38px !important;
    line-height: 1.03 !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content p {
    font-size: 17px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-text-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-final-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-faq-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-map-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-text-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-quote-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-final-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-faq-section .rlpg-inner,
  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section .rlpg-inner {
    padding: 30px 20px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-blue-cta {
    padding: 36px 20px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-text-block h2,
  .rlpg-city-page.rlpg-clean-layout .rlpg-quote-section h2,
  .rlpg-city-page.rlpg-clean-layout .rlpg-highlight-section h2,
  .rlpg-city-page.rlpg-clean-layout .rlpg-final-section h2,
  .rlpg-city-page.rlpg-clean-layout .rlpg-faq-section h2,
  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section h2 {
    font-size: 24px !important;
  }
}


/* v1.3.1 forced layout fix - applies to generated pages even if old Elementor markup/cache is still present */
.rlpg-city-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #eeeeee !important;
  overflow-x: hidden !important;
}

.rlpg-city-page .rlpg-area-section,
.rlpg-city-page .rlpg-hero-with-form {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #07008a !important;
  padding: 70px 0 !important;
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-area-section > .rlpg-inner,
.rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
.rlpg-city-page .rlpg-hero-grid {
  width: min(1260px, calc(100% - 48px)) !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 70px !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-area-content {
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-section-label,
.rlpg-city-page .rlpg-area-content > span:first-child {
  position: relative !important;
  display: inline-block !important;
  padding-left: 16px !important;
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
}

.rlpg-city-page .rlpg-section-label::before,
.rlpg-city-page .rlpg-area-content > span:first-child::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  background: #d50000 !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
}

.rlpg-city-page .rlpg-area-content h1 {
  max-width: 760px !important;
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: clamp(44px, 5vw, 78px) !important;
  line-height: 0.98 !important;
  font-weight: 900 !important;
  letter-spacing: -1.5px !important;
}

.rlpg-city-page .rlpg-area-content p {
  max-width: 760px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.rlpg-city-page .rlpg-hero-form-card {
  width: 100% !important;
  display: block !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 30px 75px rgba(0,0,0,0.22) !important;
  padding: 32px !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-hero-form-step {
  display: block !important;
  margin: 0 0 16px !important;
  color: #07008a !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.7px !important;
}

.rlpg-city-page .rlpg-hero-form-card h2 {
  margin: 0 0 12px !important;
  color: #222222 !important;
  font-size: 32px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.rlpg-city-page .rlpg-hero-form-card p {
  margin: 0 0 20px !important;
  color: #333333 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.rlpg-city-page .rlpg-hero-quote-form {
  display: block !important;
  margin: 0 !important;
}

.rlpg-city-page .rlpg-hero-quote-form label {
  display: block !important;
  margin: 0 0 14px !important;
  color: #222222 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.rlpg-city-page .rlpg-hero-quote-form input,
.rlpg-city-page .rlpg-hero-quote-form select {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  margin: 8px 0 0 !important;
  padding: 0 14px !important;
  background: #ffffff !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 0 !important;
  color: #222222 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  box-sizing: border-box !important;
  outline: none !important;
}

.rlpg-city-page .rlpg-hero-quote-form input[name="vehicle_reg"] {
  height: 54px !important;
  background: #ffcc00 !important;
  border: 2px solid #07008a !important;
  text-align: center !important;
  color: #222222 !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.rlpg-city-page .rlpg-hero-quote-form button {
  width: 100% !important;
  min-height: 52px !important;
  margin: 4px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #07008a !important;
  color: #ffffff !important;
  border: 2px solid #07008a !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 1.3px !important;
  cursor: pointer !important;
}

.rlpg-city-page .rlpg-hero-form-call {
  display: none !important;
}

.rlpg-city-page .rlpg-hero-quote-form small {
  display: block !important;
  margin: 16px 0 0 !important;
  color: #555555 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Body: force the Swinton-style grey page / white content width */
.rlpg-city-page .rlpg-text-section,
.rlpg-city-page .rlpg-quote-section,
.rlpg-city-page .rlpg-highlight-section,
.rlpg-city-page .rlpg-final-section,
.rlpg-city-page .rlpg-faq-section,
.rlpg-city-page .rlpg-contact-details-section,
.rlpg-city-page .rlpg-map-section,
.rlpg-city-page .rlpg-blue-cta-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #eeeeee !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-text-section > .rlpg-inner,
.rlpg-city-page .rlpg-quote-section > .rlpg-inner,
.rlpg-city-page .rlpg-highlight-section > .rlpg-inner,
.rlpg-city-page .rlpg-final-section > .rlpg-inner,
.rlpg-city-page .rlpg-faq-section > .rlpg-inner,
.rlpg-city-page .rlpg-contact-details-section > .rlpg-inner,
.rlpg-city-page .rlpg-map-section > .rlpg-inner {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-text-section > .rlpg-inner {
  padding: 50px 34px 24px !important;
}

.rlpg-city-page .rlpg-quote-section > .rlpg-inner,
.rlpg-city-page .rlpg-highlight-section > .rlpg-inner,
.rlpg-city-page .rlpg-final-section > .rlpg-inner,
.rlpg-city-page .rlpg-faq-section > .rlpg-inner {
  padding: 34px !important;
}

.rlpg-city-page .rlpg-text-block h2,
.rlpg-city-page .rlpg-quote-section h2,
.rlpg-city-page .rlpg-highlight-section h2,
.rlpg-city-page .rlpg-final-section h2,
.rlpg-city-page .rlpg-faq-section h2,
.rlpg-city-page .rlpg-contact-details-section h2 {
  color: #07008a !important;
  font-size: 28px !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
  font-weight: 900 !important;
}

.rlpg-city-page .rlpg-text-block p,
.rlpg-city-page .rlpg-quote-section p,
.rlpg-city-page .rlpg-highlight-section p,
.rlpg-city-page .rlpg-final-section p {
  color: #222222 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.rlpg-city-page .rlpg-quote-section .rlpg-inner::after {
  display: none !important;
  content: none !important;
}

.rlpg-city-page .rlpg-quote-section .rlpg-inner {
  position: static !important;
  padding-right: 34px !important;
}

.rlpg-city-page .rlpg-blue-cta {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 44px 34px !important;
  background: #07008a !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-blue-cta h2,
.rlpg-city-page .rlpg-blue-cta p {
  color: #ffffff !important;
}

.rlpg-city-page .rlpg-blue-cta h2 {
  font-size: 26px !important;
  line-height: 1.2 !important;
  margin: 0 0 10px !important;
}

.rlpg-city-page .rlpg-blue-cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 26px !important;
  background: #d50000 !important;
  border: 2px solid #d50000 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
}

.rlpg-city-page .rlpg-map-section > .rlpg-inner {
  padding: 0 !important;
  overflow: hidden !important;
}

.rlpg-city-page .rlpg-map-full,
.rlpg-city-page .rlpg-map-full iframe {
  display: block !important;
  width: 100% !important;
  height: 330px !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.rlpg-city-page .rlpg-map-section,
.rlpg-city-page .rlpg-map-section * {
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-faq-section h2 {
  text-align: center !important;
}

.rlpg-city-page .rlpg-faq-actions {
  display: none !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-area-section > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .rlpg-city-page .rlpg-hero-form-card {
    max-width: 620px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form {
    padding: 48px 0 !important;
  }

  .rlpg-city-page .rlpg-area-section > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-grid {
    width: min(100% - 28px, 1260px) !important;
  }

  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 38px !important;
    line-height: 1.03 !important;
  }

  .rlpg-city-page .rlpg-area-content p {
    font-size: 17px !important;
  }

  .rlpg-city-page .rlpg-text-section > .rlpg-inner,
  .rlpg-city-page .rlpg-quote-section > .rlpg-inner,
  .rlpg-city-page .rlpg-highlight-section > .rlpg-inner,
  .rlpg-city-page .rlpg-final-section > .rlpg-inner,
  .rlpg-city-page .rlpg-faq-section > .rlpg-inner,
  .rlpg-city-page .rlpg-contact-details-section > .rlpg-inner,
  .rlpg-city-page .rlpg-map-section > .rlpg-inner,
  .rlpg-city-page .rlpg-blue-cta {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page .rlpg-text-section > .rlpg-inner,
  .rlpg-city-page .rlpg-quote-section > .rlpg-inner,
  .rlpg-city-page .rlpg-highlight-section > .rlpg-inner,
  .rlpg-city-page .rlpg-final-section > .rlpg-inner,
  .rlpg-city-page .rlpg-faq-section > .rlpg-inner,
  .rlpg-city-page .rlpg-contact-details-section > .rlpg-inner {
    padding: 30px 20px !important;
  }
}


/* v1.3.2 layout corrections */
.rlpg-city-page .rlpg-area-content h1 {
  font-size: clamp(36px, 4.1vw, 58px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.8px !important;
  max-width: 740px !important;
}

/* Force the first body section below hero back to white, not blue */
.rlpg-city-page .rlpg-text-section {
  background: #eeeeee !important;
}

.rlpg-city-page .rlpg-text-section > .rlpg-inner,
.rlpg-city-page .rlpg-text-section .rlpg-inner,
.rlpg-city-page .rlpg-text-section .rlpg-narrow {
  background: #ffffff !important;
  color: #222222 !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block,
.rlpg-city-page .rlpg-text-section .rlpg-text-block * {
  color: inherit !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block h2 {
  color: #07008a !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block p {
  color: #222222 !important;
}

/* Keep all white content sections consistent */
.rlpg-city-page .rlpg-quote-section > .rlpg-inner,
.rlpg-city-page .rlpg-highlight-section > .rlpg-inner,
.rlpg-city-page .rlpg-final-section > .rlpg-inner,
.rlpg-city-page .rlpg-faq-section > .rlpg-inner,
.rlpg-city-page .rlpg-contact-details-section > .rlpg-inner {
  background: #ffffff !important;
}

/* Make the map align exactly with the body content width */
.rlpg-city-page .rlpg-map-section {
  background: #eeeeee !important;
  padding: 0 !important;
}

.rlpg-city-page .rlpg-map-section > .rlpg-inner {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.rlpg-city-page .rlpg-map-full,
.rlpg-city-page .rlpg-map-section .rlpg-map-full,
.rlpg-city-page .rlpg-map-section .rlpg-map,
.rlpg-city-page .rlpg-map-section iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  box-shadow: none !important;
  border: 0 !important;
}

.rlpg-city-page .rlpg-map-section iframe {
  height: 330px !important;
}

/* Remove leftover blue bleed from previous section rules */
.rlpg-city-page .rlpg-text-section::before,
.rlpg-city-page .rlpg-text-section::after,
.rlpg-city-page .rlpg-map-section::before,
.rlpg-city-page .rlpg-map-section::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .rlpg-city-page .rlpg-map-section > .rlpg-inner {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page .rlpg-map-section iframe {
    height: 280px !important;
  }
}


/* v1.3.3 final body correction */
.rlpg-city-page .rlpg-text-section {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #eeeeee !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-text-section > .rlpg-inner,
.rlpg-city-page .rlpg-text-section .rlpg-inner,
.rlpg-city-page .rlpg-text-section .rlpg-narrow {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 50px 34px 34px !important;
  background: #ffffff !important;
  color: #222222 !important;
  box-shadow: none !important;
  border: 0 !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block,
.rlpg-city-page .rlpg-text-section .rlpg-text-block div {
  background: transparent !important;
  color: #222222 !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block h2 {
  color: #07008a !important;
  background: transparent !important;
  opacity: 1 !important;
}

.rlpg-city-page .rlpg-text-section .rlpg-text-block p {
  color: #222222 !important;
  background: transparent !important;
  opacity: 1 !important;
}

/* Stop old blue CTA styles from touching normal text sections */
.rlpg-city-page .rlpg-text-section h2,
.rlpg-city-page .rlpg-text-section p {
  text-shadow: none !important;
  filter: none !important;
}

/* Body spacing should continue straight after hero like the reference */
.rlpg-city-page .rlpg-area-section + .rlpg-text-section {
  margin-top: 0 !important;
}

/* Make map align exactly with the white content card width */
.rlpg-city-page .rlpg-map-section > .rlpg-inner,
.rlpg-city-page .rlpg-map-section .rlpg-inner {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-map-section iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 330px !important;
  display: block !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Slightly smaller hero title */
.rlpg-city-page .rlpg-area-content h1 {
  font-size: clamp(34px, 3.8vw, 54px) !important;
  line-height: 1.06 !important;
  max-width: 720px !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-text-section > .rlpg-inner,
  .rlpg-city-page .rlpg-text-section .rlpg-inner,
  .rlpg-city-page .rlpg-text-section .rlpg-narrow,
  .rlpg-city-page .rlpg-map-section > .rlpg-inner,
  .rlpg-city-page .rlpg-map-section .rlpg-inner {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 32px !important;
  }
}


/* v1.3.6 tighter H1 and map alignment */
.rlpg-city-page .rlpg-area-content h1 {
  font-size: clamp(30px, 3.1vw, 44px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.4px !important;
  max-width: 680px !important;
}

.rlpg-city-page .rlpg-map-section,
.rlpg-city-page .rlpg-map-section > .rlpg-inner {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  background: #eeeeee !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-map-section > .rlpg-inner {
  display: block !important;
}

.rlpg-city-page .rlpg-map-full {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: block !important;
  box-shadow: none !important;
  border: 0 !important;
}

.rlpg-city-page .rlpg-map-full iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: 330px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 29px !important;
    line-height: 1.14 !important;
  }

  .rlpg-city-page .rlpg-map-full {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page .rlpg-map-full iframe {
    height: 280px !important;
  }
}


/* v1.3.7 direct alignment final */
.rlpg-city-page .rlpg-area-content h1 {
  font-size: 48px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.4px !important;
  max-width: 680px !important;
}

.rlpg-city-page .rlpg-map-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #eeeeee !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-map-align {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rlpg-city-page .rlpg-map-align iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 330px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 32px !important;
  }

  .rlpg-city-page .rlpg-map-align {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page .rlpg-map-align iframe {
    height: 280px !important;
  }
}


/* v1.3.8 H1 + exact map width */
.rlpg-city-page .rlpg-area-content h1 {
  font-size: 48px !important;
  line-height: 1.1 !important;
  max-width: 700px !important;
}

.rlpg-city-page .rlpg-map-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #eeeeee !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.rlpg-city-page .rlpg-map-section .rlpg-map-align {
  width: 980px !important;
  max-width: calc(100% - 40px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.rlpg-city-page .rlpg-map-section .rlpg-map-align iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 330px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-content h1 {
    font-size: 32px !important;
  }

  .rlpg-city-page .rlpg-map-section .rlpg-map-align {
    width: auto !important;
    max-width: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  .rlpg-city-page .rlpg-map-section .rlpg-map-align iframe {
    height: 280px !important;
  }
}


/* v1.3.9 map spacing + small left correction */
.rlpg-city-page .rlpg-map-section {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 0 !important;
  background: #eeeeee !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.rlpg-city-page .rlpg-map-section .rlpg-map-align {
  width: 970px !important;
  max-width: calc(100% - 50px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  position: relative !important;
  left: -10px !important;
}

.rlpg-city-page .rlpg-map-section .rlpg-map-align iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 330px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-map-section {
    padding: 10px 0 !important;
  }

  .rlpg-city-page .rlpg-map-section .rlpg-map-align {
    width: auto !important;
    max-width: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
    left: 0 !important;
  }

  .rlpg-city-page .rlpg-map-section .rlpg-map-align iframe {
    height: 280px !important;
  }
}


/* v1.4.0 bottom contact layout + top gap above first body section */
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form + .rlpg-text-section {
  padding-top: 18px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
  background: #eeeeee !important;
  padding: 24px 0 70px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section > .rlpg-inner {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05) !important;
  padding: 24px 28px !important;
  text-align: center !important;
  margin: 0 0 30px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 0 0 18px !important;
  color: #222222 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border: 2px solid #07008a !important;
  color: #07008a !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  border-radius: 50% !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-text {
  margin: 0 !important;
  color: #222222 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-text a {
  color: #07008a !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 22px !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-box {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: none !important;
  padding: 26px 38px !important;
  text-align: left !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-box h3 {
  margin: 0 0 16px !important;
  color: #222222 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-box-link {
  display: inline-block !important;
  margin: 0 0 18px !important;
  color: #07008a !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-box p {
  margin: 0 !important;
  color: #444444 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-mini-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 46px !important;
  padding: 0 26px !important;
  margin: 22px 0 0 !important;
  background: #07008a !important;
  border: 2px solid #07008a !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 1.4px !important;
  font-weight: 900 !important;
}

.rlpg-city-page.rlpg-clean-layout .rlpg-contact-mini-btn:hover {
  background: #d50000 !important;
  border-color: #d50000 !important;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form + .rlpg-text-section {
    padding-top: 14px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
    padding: 20px 0 55px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section > .rlpg-inner {
    width: min(100% - 28px, 980px) !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert {
    padding: 20px 18px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-title {
    font-size: 19px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert-text {
    font-size: 16px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-grid {
    grid-template-columns: 1fr !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-box {
    padding: 22px 22px !important;
  }

  .rlpg-city-page.rlpg-clean-layout .rlpg-contact-box-link {
    font-size: 18px !important;
  }
}


/* v1.4.1 form size, hero phone and bottom section cleanup */
.rlpg-city-page .rlpg-hero-grid,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
  grid-template-columns: minmax(0, 1fr) 370px !important;
  gap: 56px !important;
}

.rlpg-city-page .rlpg-hero-form-card,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
  max-width: 370px !important;
  padding: 24px !important;
}

.rlpg-city-page .rlpg-hero-form-card h2,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card h2 {
  font-size: 24px !important;
  line-height: 1.12 !important;
  margin-bottom: 10px !important;
}

.rlpg-city-page .rlpg-hero-form-card p,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card p {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin-bottom: 16px !important;
}

.rlpg-city-page .rlpg-hero-form-step,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-step {
  font-size: 11px !important;
  margin-bottom: 12px !important;
}

.rlpg-city-page .rlpg-hero-quote-form label,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form label {
  font-size: 11px !important;
  margin-bottom: 11px !important;
}

.rlpg-city-page .rlpg-hero-quote-form input,
.rlpg-city-page .rlpg-hero-quote-form select,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form input,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form select {
  height: 42px !important;
  font-size: 14px !important;
}

.rlpg-city-page .rlpg-hero-quote-form input[name="vehicle_reg"],
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form input[name="vehicle_reg"] {
  height: 48px !important;
  font-size: 21px !important;
}

.rlpg-city-page .rlpg-hero-quote-form button,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form button {
  min-height: 46px !important;
  font-size: 12px !important;
}

.rlpg-city-page .rlpg-hero-quote-form small,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-quote-form small {
  display: none !important;
}

.rlpg-city-page .rlpg-hero-phone-link,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-phone-link {
  display: inline-block !important;
  margin-top: 22px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}

.rlpg-city-page .rlpg-hero-phone-link strong,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-phone-link strong {
  font-weight: 900 !important;
  letter-spacing: 0.3px !important;
}

.rlpg-city-page .rlpg-contact-alert,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-alert {
  display: none !important;
}

.rlpg-city-page .rlpg-contact-details-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-details-section {
  padding-top: 24px !important;
}

.rlpg-city-page .rlpg-contact-grid,
.rlpg-city-page.rlpg-clean-layout .rlpg-contact-grid {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-hero-grid,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .rlpg-city-page .rlpg-hero-form-card,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 520px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-hero-phone-link,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-phone-link {
    font-size: 16px !important;
    margin-top: 18px !important;
  }

  .rlpg-city-page .rlpg-hero-form-card,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 100% !important;
    padding: 22px !important;
  }
}


/* v1.4.2 hero spacing and responsive H1 fixes */
.rlpg-city-page .rlpg-area-section,
.rlpg-city-page .rlpg-hero-with-form,
.rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
  padding: 135px 0 70px !important;
  background: #07008b !important;
  overflow: hidden !important;
}

.rlpg-city-page .rlpg-area-section > .rlpg-inner,
.rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
.rlpg-city-page .rlpg-hero-grid,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
  width: min(1250px, calc(100% - 40px)) !important;
  max-width: 1250px !important;
  grid-template-columns: minmax(0, 1fr) 370px !important;
  gap: 48px !important;
  align-items: center !important;
}

.rlpg-city-page .rlpg-area-content h1,
.rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
  max-width: 680px !important;
  margin: 0 0 20px !important;
  color: #ffffff !important;
  font-size: 48px !important;
  line-height: 1.06 !important;
  font-weight: 800 !important;
  letter-spacing: -0.4px !important;
}

.rlpg-city-page .rlpg-area-content p,
.rlpg-city-page.rlpg-clean-layout .rlpg-area-content p {
  max-width: 650px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.rlpg-city-page .rlpg-section-label,
.rlpg-city-page.rlpg-clean-layout .rlpg-section-label {
  margin-bottom: 16px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: 1.7px !important;
}

.rlpg-city-page .rlpg-hero-phone-link,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-phone-link {
  margin-top: 22px !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -74px !important;
    padding: 170px 0 60px !important;
  }

  .rlpg-city-page .rlpg-area-section > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-grid,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    width: min(100% - 40px, 1250px) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    max-width: 650px !important;
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  .rlpg-city-page .rlpg-hero-form-card,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 520px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -72px !important;
    padding: 160px 0 50px !important;
  }

  .rlpg-city-page .rlpg-area-section > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
  .rlpg-city-page .rlpg-hero-grid,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    width: min(100% - 32px, 1250px) !important;
    gap: 28px !important;
  }

  .rlpg-city-page .rlpg-section-label,
  .rlpg-city-page.rlpg-clean-layout .rlpg-section-label {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    max-width: 100% !important;
    font-size: 31px !important;
    line-height: 1.09 !important;
    letter-spacing: -0.2px !important;
    margin-bottom: 18px !important;
  }

  .rlpg-city-page .rlpg-area-content p,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .rlpg-city-page .rlpg-hero-form-card,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-form-card {
    max-width: 100% !important;
    padding: 22px !important;
  }
}

@media (max-width: 480px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -72px !important;
    padding: 150px 0 50px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 29px !important;
    line-height: 1.1 !important;
  }
}


/* v1.4.3 mobile hero margin and homepage-sized H1 */
.rlpg-city-page .rlpg-area-section,
.rlpg-city-page .rlpg-hero-with-form,
.rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
.rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
  margin-top: 0 !important;
  padding: 125px 0 68px !important;
  background: #07008b !important;
}

.rlpg-city-page .rlpg-area-content h1,
.rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
  max-width: 680px !important;
  margin: 0 0 20px !important;
  color: #ffffff !important;
  font-size: 54px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -96px !important;
    padding: 186px 0 60px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 38px !important;
    line-height: 1.08 !important;
    max-width: 620px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -96px !important;
    padding: 178px 0 50px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 33px !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 480px) {
  .rlpg-city-page .rlpg-area-section,
  .rlpg-city-page .rlpg-hero-with-form,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -104px !important;
    padding: 178px 0 48px !important;
  }

  .rlpg-city-page .rlpg-area-content h1,
  .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 31px !important;
    line-height: 1.1 !important;
  }
}


/* v1.4.4 fix white margin from 869px and below */
@media (max-width: 869px) {
  body .rlpg-city-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body .rlpg-city-page .rlpg-area-section,
  body .rlpg-city-page .rlpg-hero-with-form,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -125px !important;
    padding-top: 218px !important;
    padding-bottom: 58px !important;
  }

  body.admin-bar .rlpg-city-page .rlpg-area-section,
  body.admin-bar .rlpg-city-page .rlpg-hero-with-form,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -155px !important;
    padding-top: 248px !important;
  }

  body .rlpg-city-page .rlpg-area-section > .rlpg-inner,
  body .rlpg-city-page .rlpg-hero-with-form > .rlpg-inner,
  body .rlpg-city-page .rlpg-hero-grid,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-hero-grid {
    width: min(100% - 32px, 1250px) !important;
  }
}

@media (max-width: 787px) {
  body .rlpg-city-page .rlpg-area-section,
  body .rlpg-city-page .rlpg-hero-with-form,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -135px !important;
    padding-top: 222px !important;
    padding-bottom: 54px !important;
  }

  body.admin-bar .rlpg-city-page .rlpg-area-section,
  body.admin-bar .rlpg-city-page .rlpg-hero-with-form,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -165px !important;
    padding-top: 252px !important;
  }

  body .rlpg-city-page .rlpg-area-content h1,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 32px !important;
    line-height: 1.09 !important;
  }
}

@media (max-width: 480px) {
  body .rlpg-city-page .rlpg-area-section,
  body .rlpg-city-page .rlpg-hero-with-form,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -142px !important;
    padding-top: 220px !important;
  }

  body.admin-bar .rlpg-city-page .rlpg-area-section,
  body.admin-bar .rlpg-city-page .rlpg-hero-with-form,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-area-section,
  body.admin-bar .rlpg-city-page.rlpg-clean-layout .rlpg-hero-with-form {
    margin-top: -172px !important;
    padding-top: 250px !important;
  }

  body .rlpg-city-page .rlpg-area-content h1,
  body .rlpg-city-page.rlpg-clean-layout .rlpg-area-content h1 {
    font-size: 30px !important;
    line-height: 1.1 !important;
  }
}


/* v1.4.5 apply homepage hero structure to generated location pages */
.elementor-widget-html:has(.vehicle-recovery-compact-hero),
.elementor-widget-html:has(.vehicle-recovery-compact-hero) > .elementor-widget-container,
.elementor-element:has(.vehicle-recovery-compact-hero) {
  margin: 0 !important;
  padding: 0 !important;
}

.rlpg-city-page .vehicle-recovery-compact-hero,
.vehicle-recovery-compact-hero.rlpg-hero-with-form {
  width: 100% !important;
  margin: 0 !important;
  padding: 130px 20px 70px !important;
  background: #07008b !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
  overflow: hidden !important;
  position: relative !important;
}

.rlpg-city-page .vehicle-recovery-compact-hero * {
  box-sizing: border-box !important;
}

.rlpg-city-page .vehicle-recovery-compact-hero-inner,
.vehicle-recovery-compact-hero-inner.rlpg-hero-grid {
  max-width: 1250px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 370px !important;
  gap: 48px !important;
  align-items: center !important;
  background: transparent !important;
  padding: 0 !important;
}

.rlpg-city-page .vehicle-recovery-compact-label {
  display: inline-flex !important;
  margin-bottom: 16px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important;
  padding-left: 0 !important;
}

.rlpg-city-page .vehicle-recovery-compact-label::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  margin-right: 10px !important;
  background: #d50100 !important;
  align-self: center !important;
  position: static !important;
}

.rlpg-city-page .vehicle-recovery-compact-hero-content h1 {
  max-width: 680px !important;
  margin: 0 0 20px !important;
  color: #ffffff !important;
  font-size: 54px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.rlpg-city-page .vehicle-recovery-compact-hero-content p {
  max-width: 650px !important;
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.rlpg-city-page .vehicle-recovery-compact-form-card {
  width: 100% !important;
  max-width: 370px !important;
  background: #ffffff !important;
  padding: 24px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  .rlpg-city-page .vehicle-recovery-compact-hero,
  .vehicle-recovery-compact-hero.rlpg-hero-with-form {
    margin-top: -74px !important;
    padding: 170px 20px 60px !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-hero-inner,
  .vehicle-recovery-compact-hero-inner.rlpg-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-hero-content h1 {
    font-size: 44px !important;
    line-height: 1.07 !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-form-card {
    max-width: 520px !important;
  }
}

@media (max-width: 869px) {
  .rlpg-city-page .vehicle-recovery-compact-hero,
  .vehicle-recovery-compact-hero.rlpg-hero-with-form {
    margin-top: -74px !important;
    padding: 170px 20px 60px !important;
  }
}

@media (max-width: 767px) {
  .rlpg-city-page .vehicle-recovery-compact-hero,
  .vehicle-recovery-compact-hero.rlpg-hero-with-form {
    margin-top: -72px !important;
    padding: 160px 16px 50px !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-label {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-hero-content h1 {
    font-size: 33px !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-hero-content p {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .rlpg-city-page .vehicle-recovery-compact-form-card {
    max-width: 100% !important;
    padding: 22px !important;
  }
}

@media (max-width: 480px) {
  .rlpg-city-page .vehicle-recovery-compact-hero,
  .vehicle-recovery-compact-hero.rlpg-hero-with-form {
    margin-top: -72px !important;
    padding: 150px 16px 50px !important;
  }
}


/* v1.4.6 remove theme wrapper gap above generated hero */
body.rlpg-generated-location-page,
body.rlpg-generated-location-page #page,
body.rlpg-generated-location-page #content,
body.rlpg-generated-location-page .site-content,
body.rlpg-generated-location-page .content-area,
body.rlpg-generated-location-page #primary,
body.rlpg-generated-location-page main.site-main,
body.rlpg-generated-location-page article.page,
body.rlpg-generated-location-page .entry-content,
body.rlpg-generated-location-page .ast-container,
body.rlpg-generated-location-page .elementor,
body.rlpg-generated-location-page .elementor-section-wrap,
body.rlpg-generated-location-page .elementor-widget-wrap,
body.rlpg-generated-location-page .elementor-widget-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.rlpg-generated-location-page .entry-header,
body.rlpg-generated-location-page .ast-single-post-order,
body.rlpg-generated-location-page .page-header {
  display: none !important;
}

body.rlpg-generated-location-page .rlpg-city-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.rlpg-generated-location-page .vehicle-recovery-compact-hero,
body.rlpg-generated-location-page .rlpg-hero-with-form {
  margin-top: 0 !important;
}

/* Specific mobile/tablet fix where the theme header leaves a white strip */
@media (max-width: 869px) {
  body.rlpg-generated-location-page #page,
  body.rlpg-generated-location-page #content,
  body.rlpg-generated-location-page .site-content,
  body.rlpg-generated-location-page .content-area,
  body.rlpg-generated-location-page #primary,
  body.rlpg-generated-location-page main.site-main,
  body.rlpg-generated-location-page article.page,
  body.rlpg-generated-location-page .entry-content,
  body.rlpg-generated-location-page .ast-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.rlpg-generated-location-page .vehicle-recovery-compact-hero,
  body.rlpg-generated-location-page .rlpg-hero-with-form {
    margin-top: -1px !important;
    padding-top: 130px !important;
  }
}

@media (max-width: 767px) {
  body.rlpg-generated-location-page .vehicle-recovery-compact-hero,
  body.rlpg-generated-location-page .rlpg-hero-with-form {
    margin-top: -1px !important;
    padding-top: 126px !important;
  }

  body.rlpg-generated-location-page .vehicle-recovery-compact-hero-content h1,
  body.rlpg-generated-location-page .rlpg-area-content h1 {
    font-size: 31px !important;
    line-height: 1.09 !important;
  }
}

@media (max-width: 480px) {
  body.rlpg-generated-location-page .vehicle-recovery-compact-hero,
  body.rlpg-generated-location-page .rlpg-hero-with-form {
    padding-top: 122px !important;
  }

  body.rlpg-generated-location-page .vehicle-recovery-compact-hero-content h1,
  body.rlpg-generated-location-page .rlpg-area-content h1 {
    font-size: 30px !important;
    line-height: 1.1 !important;
  }
}
