* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary colors */
    --baby-blue: #00affe;
    --white: #FFFFFF;
    --text-dark: #333333;
    --border-color: #E0E0E0;

    /* Complementary colors */
    --cyan-dark: #0088cc;
    --cyan-light: #e6f7ff;
    --text-muted: #555555;
    --bg-light: #f4f6f8;
    --bg-dark: #1a2634;
    --bg-medium: #e8edf2;

    /* Typography scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-cyan: 0 8px 25px rgba(0, 175, 254, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--white);
    border-bottom: 3px solid var(--baby-blue);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--baby-blue);
}

.logo-link {
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--baby-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--baby-blue);
}

.main-content {
    min-height: calc(100vh - 200px);
}

.hero {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid var(--baby-blue);
}

.hero-title {
    font-size: 44px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-emphasis {
    font-size: 56px;
    font-weight: 900;
    display: block;
    color: var(--baby-blue);
}

.hero-subtitle {
    font-size: 22px;
    margin: 20px auto 15px;
    max-width: 600px;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.hero-tagline {
    font-size: 20px;
    font-style: italic;
    margin-top: 25px;
}

.section {
    padding: 70px 0;
}

.section-white {
    background-color: var(--white);
}

.section-alt {
    background-color: var(--bg-medium);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .feature-item h3 {
    color: var(--baby-blue);
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 36px;
    color: var(--baby-blue);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-left: 4px solid var(--baby-blue);
    padding: 32px;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--baby-blue);
}

.service-card p {
    font-size: 16px;
    color: var(--text-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-tagline {
    font-size: 22px;
    font-style: italic;
    margin-top: 30px;
    color: var(--baby-blue);
}

.contact-methods {
    margin: 50px 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--baby-blue);
}

.contact-item p {
    font-size: 18px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--baby-blue);
}

.contact-item-box {
    background-color: var(--white);
    border: 2px solid var(--baby-blue);
    border-radius: 8px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
}

.contact-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 175, 254, 0.2);
}

.contact-item-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--baby-blue);
}

.contact-item-box p {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-item-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-item-box a:hover {
    color: var(--baby-blue);
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
}

.form-section {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-title {
    text-align: center;
    font-size: 28px;
    color: var(--baby-blue);
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    font-family: inherit;
    font-size: 16px;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--baby-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-select {
    background-color: var(--white);
    cursor: pointer;
}

.btn {
    background-color: var(--baby-blue);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.btn:hover {
    background-color: #0099e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 175, 254, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    margin-top: 20px;
}

.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

.promo-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.promo-box {
    background-color: var(--baby-blue);
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 175, 254, 0.25);
}

.promo-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.promo-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-subtext {
    font-size: 18px;
    margin-bottom: 15px;
}

.promo-disclaimer {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 28px 24px;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-dark .feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--baby-blue);
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    border-left: 4px solid var(--baby-blue);
    padding: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--baby-blue);
    text-align: right;
}

.cta-section {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-top: 4px solid var(--baby-blue);
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-section .btn {
    background-color: var(--baby-blue);
    color: var(--white);
}

.cta-section .btn:hover {
    background-color: var(--cyan-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: -20px auto 50px;
    color: var(--text-dark);
}

.service-detail {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-detail-alt {
    background-color: #f8f9fa;
}

.service-detail-title {
    font-size: 28px;
    color: var(--baby-blue);
    margin-bottom: 20px;
}

.service-detail-description {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-list h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--baby-blue);
    font-weight: 700;
    font-size: 18px;
}

.service-process {
    margin-top: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
}

.process-step:hover {
    border-color: var(--baby-blue);
}

.process-step h4 {
    font-size: 20px;
    color: var(--baby-blue);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-preview-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-preview-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-preview {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    background-color: var(--baby-blue);
    padding: 40px 0;
}

.trust-section .trust-icon {
    background-color: var(--white);
}

.trust-section .trust-title {
    color: var(--white);
}

.trust-section .trust-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Trust Badges Component */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.trust-badges-compact {
    gap: 24px;
    padding: 32px 0;
}

.trust-badges-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-badges-inline .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background-color: var(--cyan-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-svg {
    width: 28px;
    height: 28px;
    fill: var(--baby-blue);
}

.trust-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trust-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Before/After Slider Component */
.ba-slider {
    max-width: 500px;
    margin: 0 auto;
}

.ba-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    aspect-ratio: 4/3;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    display: block;
    width: 200%;
    height: 100%;
    object-fit: cover;
}

.ba-before img {
    object-position: left center;
}

.ba-after img {
    object-position: right center;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    background-color: var(--baby-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
    z-index: 10;
}

.ba-handle-line {
    flex: 1;
    width: 4px;
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ba-handle-arrows {
    display: flex;
    gap: 8px;
}

.ba-handle-arrows::before,
.ba-handle-arrows::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.ba-handle-arrows::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent var(--baby-blue) transparent transparent;
}

.ba-handle-arrows::after {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--baby-blue);
}

.ba-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
    color: var(--text-dark);
    font-style: italic;
}

/* Gallery Page Styles */
.hero-compact {
    padding: 70px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid var(--baby-blue);
    color: var(--baby-blue);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--baby-blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 36px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-cyan);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.05);
}


.gallery-item-info {
    padding: 28px;
}

.gallery-item-title {
    font-size: 20px;
    color: var(--baby-blue);
    margin-bottom: 10px;
}

.gallery-item-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-emphasis {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-info {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .contact-item-box {
        min-width: 100%;
    }

    .form-section {
        padding: 25px;
    }

    .promo-title {
        font-size: 56px;
    }

    .promo-text {
        font-size: 24px;
    }

    .promo-box {
        padding: 30px 20px;
    }

    .features-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail {
        padding: 25px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 18px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Trust badges responsive */
    .trust-badges-inline {
        gap: 32px;
    }

    .trust-badge {
        gap: 12px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-compact {
        padding: 50px 0;
    }

    /* Slider responsive */
    .ba-slider {
        max-width: 100%;
    }

    .ba-handle-circle {
        width: 36px;
        height: 36px;
    }

    .ba-handle-arrows::before {
        border-width: 5px 6px 5px 0;
    }

    .ba-handle-arrows::after {
        border-width: 5px 0 5px 6px;
    }

    .ba-label {
        padding: 6px 12px;
        font-size: 11px;
        bottom: 10px;
    }

    .ba-label-before {
        left: 10px;
    }

    .ba-label-after {
        right: 10px;
    }
}

/* Coverage Page Styles */
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.coverage-map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coverage-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
}

.coverage-info {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.coverage-title {
    font-size: var(--text-2xl);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.coverage-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.coverage-subtitle {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: 12px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.coverage-subtitle:first-of-type {
    margin-top: 0;
}

.coverage-areas-list {
    list-style: none;
    margin-bottom: 24px;
}

.coverage-area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.coverage-area-item:last-child {
    border-bottom: none;
}

.coverage-area-item.base-location {
    background: var(--cyan-light);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: none;
}

.area-marker {
    width: 12px;
    height: 12px;
    background: var(--baby-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.base-location .area-marker {
    width: 16px;
    height: 16px;
    background: var(--cyan-dark);
}

.area-name {
    font-weight: 500;
    color: var(--text-dark);
    flex-grow: 1;
}

.base-badge,
.region-badge {
    background: var(--baby-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.region-badge {
    background: var(--text-muted);
}

.region-item .area-marker {
    width: 20px;
    height: 8px;
    border-radius: 4px;
}

.coverage-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.coverage-note p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Map Marker Styles */
.marker-pin {
    width: 24px;
    height: 24px;
    background: var(--baby-blue);
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.marker-pin.base {
    width: 30px;
    height: 30px;
    background: var(--cyan-dark);
    border-width: 4px;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Coverage Page Responsive */
@media (max-width: 900px) {
    .coverage-layout {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        height: 400px;
    }

    .coverage-info {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .coverage-map {
        height: 350px;
    }

    .coverage-area-item.base-location {
        margin: 0 -12px;
        padding: 12px;
    }
}
