@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0D7C66;
    --primary-light: #12A085;
    --primary-dark: #095C4B;
    --accent: #D4A854;
    --accent-light: #E4C07A;
    --dark: #1A1A2E;
    --dark-card: #16213E;
    --text: #333333;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.btn-primary-new {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-new:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    background: #C49A48;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-new {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-new:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white-new {
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-white-new:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.site-nav {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo-img {
    height: 50px;
    margin-right: 12px;
}

.nav-brand-text {
    font-weight: 800;
    font-size: 19px;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.nav-brand-text span {
    color: var(--primary);
    font-weight: 800;
}

.nav-brand-text small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.site-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    transition: var(--transition);
}

.site-nav .nav-link:hover {
    color: var(--primary);
}

.site-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D7C66 0%, #1A1A2E 60%, #095C4B 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 16px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff !important;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
    color: #fff !important;
}

.trust-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.trust-bar .star {
    color: var(--accent);
}

.how-strip {
    background: var(--bg-light);
    padding: 28px 0;
    border-bottom: 1px solid #e0e0e0;
}

.how-strip .step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.how-strip .step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.how-strip .step h6 {
    font-size: 14px;
    margin: 0;
    color: var(--dark);
}

.how-strip .step p {
    font-size: 12px;
    margin: 0;
    color: var(--text-light);
}

.how-strip .step-arrow {
    color: var(--primary);
    font-size: 20px;
    opacity: 0.4;
}

.bike-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.bike-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bike-card-img {
    height: 200px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.bike-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-card-body {
    padding: 16px;
}

.bike-card-body h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--dark);
}

.bike-card-body .stars {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 10px;
}

.price-badge {
    display: inline-block;
    background: rgba(212, 168, 84, 0.12);
    color: #B8932F;
    font-weight: 700;
    font-size: 17px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.stats-section {
    background: var(--dark);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
    color: var(--primary-light);
    margin-top: 2px;
}

.why-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--primary);
}

.why-card h6 {
    font-size: 14px;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    padding: 24px;
    color: #fff;
    height: 100%;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial-card .badge-ta {
    background: var(--primary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
}

.testimonial-card .review-text {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.7;
    font-style: italic;
    margin: 12px 0;
}

.testimonial-card .reviewer {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card .reviewer-meta {
    font-size: 12px;
    opacity: 0.5;
}

.sister-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.sister-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sister-card .sister-logo {
    height: 60px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    background: #ffffff;
}

.sister-card .sister-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.sister-card h6 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--dark);
}

.sister-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.footer-section {
    background: var(--dark);
    padding: 48px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section h6 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-logo-block img {
    height: 40px;
    margin-bottom: 8px;
}

.footer-brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.footer-brand-sub {
    font-size: 12px;
    opacity: 0.5;
}

.footer-link-list {
    line-height: 2.2;
    font-size: 13px;
}

.footer-contact-list {
    line-height: 2;
    font-size: 13px;
}

.footer-contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    margin-top: 32px;
    font-size: 12px;
}

.social-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 6px;
    transition: var(--transition);
    font-size: 16px;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.breadcrumb-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
    text-align: center;
    color: #fff;
}

.breadcrumb-banner h2,
.breadcrumb-banner .breadcrumb-path,
.breadcrumb-banner .breadcrumb-path a {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.breadcrumb-banner h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #fff;
}

.breadcrumb-path {
    font-size: 14px;
    opacity: 0.7;
}

.breadcrumb-path a {
    color: var(--accent);
    text-decoration: none;
}

.filter-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 3px;
    text-decoration: none;
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature .af-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(13, 124, 102, 0.2);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 124, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item .gallery-img {
    height: 220px;
    background: linear-gradient(135deg, #ddd, #ccc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: 0.3s;
}

.gallery-item .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 124, 102, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(13, 124, 102, 0.4);
}

.gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
}

.main-img-box {
    height: 350px;
    background: linear-gradient(135deg, #e0e0e0, #ccc);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 12px;
    cursor: pointer;
}

.thumb-row {
    display: flex;
    gap: 8px;
}

.thumb-item {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #e8e8e8, #d5d5d5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 11px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.thumb-item.active {
    border-color: var(--primary);
}

.spec-table td {
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.booking-form {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.booking-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 14px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.15);
}

.policy-card {
    background: #fff;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.policy-card .card-body {
    padding: 20px 24px;
}

.policy-card h4 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.cms-content h4 {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.cms-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.listing-discounts {
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.listing-discounts .discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.listing-discounts .discount-price {
    color: var(--primary);
    font-weight: 600;
}

/* --- Text visibility improvements --- */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-banner h2,
.cta-banner p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* About page text colors */
.about-feature h6 {
    color: var(--dark);
}

.about-feature p {
    color: var(--text-light) !important;
}

/* FAQ accordion readability */
.accordion-button {
    font-weight: 600;
    color: var(--dark);
}

.accordion-body {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact page form labels */
.contact-card .form-label {
    color: var(--dark);
    font-weight: 600;
}

/* Discount percentage badge in fleet */
.discount-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.discount-badge-row .d-badge {
    display: inline-block;
    background: rgba(13, 124, 102, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Fleet long-rental discount banner */
.fleet-discount-banner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 32px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 124, 102, 0.08);
    position: relative;
    overflow: hidden;
}

.fleet-discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.discount-banner-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.discount-banner-label i {
    color: var(--primary);
    font-size: 18px;
}

.discount-tiers-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.discount-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 124, 102, 0.05), rgba(13, 124, 102, 0.02));
    border: 1.5px solid rgba(13, 124, 102, 0.12);
    border-radius: var(--radius-md);
    padding: 16px 28px 14px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.discount-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 124, 102, 0.12);
    border-color: var(--primary);
}

.discount-tier-pct {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.discount-tier-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-top: 2px;
}

.discount-tier-days {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(13, 124, 102, 0.1);
    width: 100%;
    text-align: center;
}

.discount-banner-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    margin: 16px 0 0;
    position: relative;
    z-index: 1;
}

.discount-banner-note i {
    color: var(--primary);
}

/* Smaller homepage discount banner */
.fleet-discount-banner-sm {
    padding: 20px 24px 16px;
}

.fleet-discount-banner-sm .discount-banner-label {
    font-size: 15px;
    margin-bottom: 12px;
}

.fleet-discount-banner-sm .discount-tier {
    padding: 12px 20px 10px;
    min-width: 100px;
}

.fleet-discount-banner-sm .discount-tier-pct {
    font-size: 24px;
}

.fleet-discount-banner-sm .discount-tiers-row {
    gap: 12px;
}

/* Fleet sort dropdown */
#fleetSort {
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 20px;
    transition: var(--transition);
}

#fleetSort:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.1);
    color: var(--primary);
}

/* Compare page bike selector */
.compare-selector {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.compare-selector label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* Compare checkbox on fleet */
.compare-check-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    margin-top: 8px;
}

.compare-check-label input[type="checkbox"] {
    accent-color: var(--primary);
}

.compare-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 12px 0;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.compare-floating-bar.show {
    display: block;
}

@media (max-width: 991px) {
    .site-nav .navbar-collapse {
        margin-top: 14px;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }

    .site-nav .nav-link {
        padding: 10px 0;
    }

    .nav-logo-img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    body {
        background: #fff;
    }

    .hero-section {
        min-height: 470px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .breadcrumb-banner h2 {
        font-size: 26px;
    }

    .how-strip .step-arrow {
        display: none;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Discount tiers: always 4 inline on mobile, smaller */
    .discount-tiers-row {
        gap: 6px;
        flex-wrap: nowrap;
    }
    .discount-tier {
        padding: 8px 6px 6px;
        min-width: 0;
        flex: 1;
    }
    .discount-tier-pct {
        font-size: 18px;
    }
    .discount-tier-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    .discount-tier-days {
        font-size: 10px;
        margin-top: 3px;
        padding-top: 3px;
    }
    .fleet-discount-banner {
        padding: 16px 12px 14px;
    }
    .discount-banner-label {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .fleet-discount-banner-sm .discount-tier-pct {
        font-size: 16px;
    }
    .fleet-discount-banner-sm .discount-tier {
        padding: 6px 4px 5px;
    }
    .fleet-discount-banner-sm .discount-tiers-row {
        gap: 6px;
    }
}
