    :root {
      --primary: #ff1d58;
      --secondary: #6fb9e0;
      --light: #F8F9FA;
      --dark: #212529;
      --success: #28A745;
    }

    html{
      width: 100vw;
      max-width: 100vw;
      overflow-x: hidden;

    }
    
    body {
      font-family: 'Open Sans', sans-serif;
      color: #333;
      width: 100vw;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
    }
    
    .bg-primary {
      background-color: var(--primary) !important;
    }
    
    .bg-secondary {
      background-color: var(--secondary) !important;
    }
    
    .text-primary {
      color: var(--primary) !important;
    }
    
    .text-secondary {
      color: var(--secondary) !important;
    }
    
    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
    }
    
    .btn-primary:hover {
      background-color: #e05d00;
      border-color: #e05d00;
    }
    
    .btn-outline-primary {
      color: var(--primary);
      border-color: var(--primary);
    }
    
    .btn-outline-primary:hover {
      background-color: var(--primary);
      color: white;
    }
    
    .navbar {
      padding: 0.8rem 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-brand img {
      height: 50px;
	  max-width: 250px;
    }
    
    .hero-section {
      background: linear-gradient(rgba(26, 43, 71, 0.8), rgba(26, 43, 71, 0.8)), url('/images/mobile-tyre-repair.jpeg');
      background-size: cover;
      background-position: center;
      padding: 100px 0;
      color: white;
    }

    .hero-section.hero-section--jump-start {
      background: linear-gradient(rgba(26, 43, 71, 0.8), rgba(26, 43, 71, 0.8)), url('/images/flat-battery-call-out-london.jpeg');
      background-size: cover;
      background-position: center;
    }

    .jump-start-area__key-facts-card .jump-start-area__term {
      font-weight: 600;
      color: #333;
    }

    .jump-start-area__key-facts-card .jump-start-area__def {
      margin-bottom: 0.75rem;
    }

    @media (min-width: 576px) {
      .jump-start-area__key-facts-card .jump-start-area__term,
      .jump-start-area__key-facts-card .jump-start-area__def {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        border-bottom: 1px solid #eee;
      }
    }

    .jump-start-area__related-list {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
    }

    .jump-start-area__related-item {
      margin: 0;
    }

    .jump-start-area__related-link {
      display: inline-block;
      padding: 0.35rem 0.9rem;
      border: 1px solid var(--primary);
      border-radius: 50px;
      color: var(--primary);
      text-decoration: none;
      font-size: 0.9rem;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .jump-start-area__related-link:hover {
      background: var(--primary);
      color: #fff;
    }

    .jump-start-area__feature-bar .feature-icon {
      margin-bottom: 0;
    }

    .jump-start-area__hub-list--micro {
      column-gap: 2rem;
    }

    @media (min-width: 768px) {
      .jump-start-area__hub-list--micro {
        column-count: 2;
      }
    }

    @media (min-width: 1200px) {
      .jump-start-area__hub-list--micro {
        column-count: 3;
      }
    }

    .flat-battery-page__payment-img {
      max-height: 48px;
      width: auto;
      object-fit: contain;
    }
    
    .service-card {
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      height: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .service-card img {
      height: 200px;
      object-fit: cover;
    }
    
    .step-card {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      height: 100%;
      position: relative;
      background: white;
    }
    
    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    
    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    .top-contact-bar {
      padding: 8px 0;
      font-size: 0.9rem;
	  white-space: nowrap;
    }
    
    .social-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: white;
    }
    
    .cta-button {
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .mtr-bottom-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1030;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 3.5rem;
      padding-bottom: env(safe-area-inset-bottom, 0);
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    }

    .mtr-bottom-cta__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 3.5rem;
      padding: 0.75rem 1rem;
      border: none;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      text-decoration: none;
      line-height: 1.2;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .mtr-bottom-cta__btn:focus-visible {
      outline: 2px solid #fff;
      outline-offset: -4px;
    }

    .mtr-bottom-cta__btn--call {
      background-color: var(--primary);
      color: #fff;
    }

    .mtr-bottom-cta__btn--call:hover,
    .mtr-bottom-cta__btn--call:focus-visible {
      background-color: #e05d00;
      color: #fff;
    }

    .mtr-bottom-cta__btn--quote {
      background-color: #fff;
      color: var(--primary);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mtr-bottom-cta__btn--quote:hover,
    .mtr-bottom-cta__btn--quote:focus-visible {
      background-color: var(--light);
      color: var(--primary);
    }

    @media (max-width: 991.98px) {
      body {
        padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0));
      }
    }
    
    .brands-section img {
      max-height: 60px;
	  max-width: 150px;
      margin: 10px 15px;
      transition: all 0.3s;
    }
    
    .brands-section img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    .payment-methods img {
      max-height: 40px;
      margin: 0 5px;
    }
    
    footer {
      padding: 60px 0 30px;
    }
    
    footer h5 {
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    footer h5:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }
    
    footer ul {
      list-style: none;
      padding-left: 0;
    }
    
    footer ul li {
      margin-bottom: 10px;
    }
    
    footer ul li a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: all 0.3s;
    }
    
    footer ul li a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .copyright {
      padding: 20px 0 0;
      margin-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 0;
      }
      
      .hero-section h1 {
        font-size: 2rem;
      }
      
      .step-card {
        margin-bottom: 30px;
      }
    }

    /* Qoute Modal Style */

    
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 50px;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            overflow: hidden;
            position: relative;
        }

        .form-container img {
            display: block;
            margin: 0 auto 20px;
            max-width: 250px;
            height: auto;
        }


        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-direction: row;
            height: fit-content;
        }

        .progress-bar div {
            width: 30%;
            background-color: #ccc;
            border-radius: 5px;
            color: white;
            padding: 10px;
			white-space:normal;
        }

        .progress-bar .active {
            background-color: #fe1d57;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 15px;
            font-weight: bold;
            font-size: 16px;
            color: #000;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            color: #000;
            background-color: #fff;
            transition: border 0.2s ease-in-out;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input[type="submit"],
        .form-buttons button {
            background-color: #fe1d57;
            color: #fff;
            padding: 12px 20px;
            font-size: 16px;
            text-transform: uppercase;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input[type="submit"]:hover,
        .form-buttons button:hover {
            background-color: #0149b7;
        }

        .form-buttons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        #tyre-size-group,
        #puncture-group {
            display: none;
        }

        .radio-buttons {
            display: flex;
            gap: 10px;
        }

        .radio-buttons button {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .radio-buttons button.selected {
            background-color: #0149b7;
            color: #fff;
        }

        .privacy-notice {
            text-align: center;
            margin-bottom: 15px;
            color: #000;
            font-size: 14px;
        }

        @media (max-width: 600px) {
            .form-container {
                padding: 15px;
            }


            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 14px;
            }

            .form-group input[type="submit"],
            .form-buttons button {
                font-size: 14px;
                padding: 10px;
            }

            .form-buttons {
                flex-direction: column;
            }
        }

        .step {
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        .step.active {
            display: block;
            opacity: 1;
        }

        /* Highlight invalid fields */
        .invalid {
            border-color: red;
        }

        .error-message {
            color: red;
            margin-top: 10px;
            font-size: 12px;
            display: none;
        }

		#preloader {
	position: fixed;
	z-index: 9999;
	background: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity .5s ease, visibility .5s ease
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden
}

.preloader-inner {
	display: flex;
	flex-direction: column;
	align-items: center
}

.preloader-logo {
	width: 250px;
	max-width: 90%;
	margin-bottom: 0;
  height:auto;
}

/* Footer fragment + modal logos (axe / Edge Tools: no inline styles) */
.mtr-footer-brand-logo {
	height: 50px;
	background: #fff;
	padding: 10px;
	width: auto;
}

.mtr-quote-modal-logo {
	width: 250px;
	max-width: 100%;
	height: auto;
}

/* Quote modal — fieldset/legend without default browser chrome */
.mtr-quote-modal__fieldset {
	border: none;
	margin: 0 0 1rem;
	padding: 0;
	min-width: 0;
}

.mtr-quote-modal__fieldset legend.form-label {
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: inherit;
	font-weight: 600;
}

/* index.html — avoid inline styles (Edge Tools / accessibility) */
.mtr-gtm-noscript-iframe {
	display: none;
	visibility: hidden;
}

.mtr-seo-keywords-section {
	display: none;
	visibility: hidden;
}

.mtr-map-container--rounded {
	border-radius: 10px;
	overflow: hidden;
}

.mtr-map-embed {
	border: 0;
	width: 100%;
	height: 400px;
}

/* Quote engine — “select something” message (shared; used by dist/js/main.js) */
.mtr-quote-engine__error-msg {
	font-weight: bold;
	color: #dc3545;
	text-align: center;
	margin-top: 0.5rem;
}
