:root {
    /* Light Mode Colors */
    --primary-green: #00C853;
    --light-green: #69F0AE;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --header-height: 80px;
    --section-padding: 100px 0;
}

[data-theme="dark"] {
    --primary-green: #1B5E20;
    --light-green: #69F0AE;
    --white: #121212;
    --light-bg: #1E1E1E;
    --text-dark: #FFFFFF;
    --text-gray: #B0B0B0;
    --shadow: rgba(0, 200, 83, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 200, 83, 0.1);
}

[data-theme="dark"] .header {
    background: rgba(18, 18, 18, 0.95);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

/* Nodig brand links — vizualna indikacija kliklibilnog linka */
a.nodig-ref {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--primary-green);
    text-underline-offset: 3px;
    cursor: pointer;
}
a.nodig-ref:hover {
    color: var(--primary-green);
    text-decoration-style: solid;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--light-bg);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    width: 50px;
    height: 28px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.theme-toggle::before {
    content: '🌙';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    font-size: 14px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .theme-toggle::before {
    content: '☀️';
    left: 24px;
}

.theme-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(22px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.85), rgba(27, 94, 32, 0.9));
    z-index: -1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9), rgba(0, 0, 0, 0.8));
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Phone CTA (Mobile Only) */
.phone-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow);
    border-color: var(--primary-green);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 15px;
}

/* Partner Section */
.partner-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    padding: 60px 20px;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.3);
}

.partner-logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.partner-banner h2 {
    color: white;
    margin-bottom: 15px;
}

.partner-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--primary-green);
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 200, 83, 0.2);
    color: var(--text-gray);
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.content-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 200, 83, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-green);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        padding: 40px;
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(18, 18, 18, 0.98);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .phone-cta {
        display: flex;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 70px;
        --section-padding: 60px 0;
    }

    .hero {
        min-height: 80vh;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================================
   AEO Block — skriveno od posjetitelja, vidljivo crawlerima i AI
   ============================================================ */
.aeo-block { display: none; }
.aeo-lead { color: var(--text-dark); font-size: 1rem; line-height: 1.7; margin: 0 0 1.25rem; }
.aeo-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem 1.5rem; }
.aeo-cols div { display: flex; flex-direction: column; gap: 0.15rem; }
.aeo-cols strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-gray); }
.aeo-cols span { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }

/* ============================================================
   FAQ Block (AEO) — skriveno od posjetitelja
   ============================================================ */
.faq-block { display: none; }
.faq-block > h2 { margin-bottom: 1.5rem; }
.faq-block .faq-list { display: flex; flex-direction: column; gap: 0.65rem; }

/* ============================================================
   Breadcrumb navigacija
   ============================================================ */
.breadcrumb { font-size: 0.82rem; color: var(--text-gray); margin-bottom: 12px; }
.breadcrumb a { color: var(--primary-green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   Testimonial kartice
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 2px solid transparent;
    border-top: 4px solid var(--primary-green);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow);
    border-color: var(--primary-green);
    border-top-color: var(--primary-green);
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--primary-green);
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================================
   Floating WhatsApp dugme (samo mobile)
   ============================================================ */
.floating-whatsapp {
    display: none;
    position: fixed;
    bottom: 88px;
    right: 20px;
    z-index: 998;
    background: #25D366;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 14px 22px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    align-items: center;
    gap: 8px;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(37,211,102,0.65);
    color: #fff !important;
}

@media (max-width: 968px) {
    .floating-whatsapp { display: inline-flex; }
}

/* phone-cta — namjestiti na bottom: 24px per spec */
@media (max-width: 968px) {
    .phone-cta { bottom: 24px; }
}


/* ============================================================
   FAQ Accordion (vidljiva, interaktivna verzija na kontakt stranici)
   ============================================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion .faq-item {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid transparent;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .faq-item[open] {
    border-color: var(--primary-green);
    box-shadow: 0 8px 32px var(--shadow);
}

.faq-accordion .faq-question {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    gap: 12px;
    transition: color 0.2s ease;
}

.faq-accordion .faq-question::-webkit-details-marker { display: none; }
.faq-accordion .faq-question::marker { display: none; }

.faq-accordion .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.faq-accordion .faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-accordion .faq-item[open] .faq-question {
    color: var(--primary-green);
}

.faq-accordion .faq-body {
    padding: 0 24px 20px;
    color: var(--text-gray);
    line-height: 1.75;
    border-top: 1px solid rgba(0, 200, 83, 0.15);
}

.faq-accordion .faq-body p {
    margin: 12px 0 0;
}

/* ============================================================
   Područje usluge (Service Area Grid)
   ============================================================ */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.area-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 6px 24px var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 40px var(--shadow);
}

.area-card--highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
}

.area-card--highlight h3,
.area-card--highlight p {
    color: white !important;
}

.area-card--highlight .service-link {
    color: white !important;
}

.area-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1;
}

.area-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.area-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-gray);
}

@media (max-width: 640px) {
    .service-area-grid {
        grid-template-columns: 1fr 1fr;
    }
}
