:root {
            --primary: #050a1f;
            --primary-light: #0d1a44;
            --accent: #f5b700;
            --accent-glow: rgba(245, 183, 0, 0.4);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f4f7fb;
            --surface: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .hero {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: white;
            padding: 40px 5% 110px;
            text-align: center;
            overflow: hidden;
        }

        

        .hero-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .hero-logos img {
            height: 90px;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .hero-logos img:hover {
            transform: translateY(-5px) scale(1.05);
            filter: drop-shadow(0 15px 25px rgba(245, 183, 0, 0.4));
        }

        .logo-divider {
            width: 2px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
        }

        .hero h1 {
            font-size: 46px;
            font-weight: 900;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff, #f5b700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
            z-index: 2;
        }

        .hero p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            color: #cbd5e1;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        
        .quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 20;
}

        .quick-access-card {
            background: var(--surface);
            padding: 25px 20px;
            border-radius: 20px;
            text-align: center;
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .quick-access-card i {
            font-size: 32px;
            color: var(--accent);
            transition: transform 0.3s;
        }

        .quick-access-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
            border-color: var(--accent);
            color: var(--primary);
        }

        .quick-access-card:hover i {
            transform: scale(1.15);
        }
        .container {
    max-width: 1400px;
    margin: -40px auto 80px;
    padding: 0 2%;
    position: relative;
    z-index: 10;
}

        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-title::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 28px;
            background: var(--accent);
            border-radius: 4px;
        }
        .content-card {
            background: var(--surface);
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            margin-bottom: 60px;
        }

        .history-text {
            font-size: 16px;
            color: #475569;
        }

        .history-text p {
            margin-bottom: 20px;
        }

        .history-highlight {
            background: linear-gradient(135deg, rgba(245, 183, 0, 0.1), rgba(245, 183, 0, 0.02));
            border-left: 4px solid var(--accent);
            padding: 24px;
            border-radius: 0 16px 16px 0;
            margin: 35px 0;
            color: var(--primary-light);
            font-weight: 500;
            font-size: 16px;
        }

        .old-area-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 20px;
            list-style: none;
            padding: 0;
        }

        .old-area-list li {
            background: #f8fafc;
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            font-size: 15px;
            color: #475569;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .old-area-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-color: #cbd5e1;
        }

        .old-area-list strong {
            color: var(--primary);
            font-weight: 700;
            display: inline-block;
            width: 130px;
        }

        
        .area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

        .area-card {
            background: var(--surface);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid #f1f5f9;
        }

        .area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.08);
        }

        .area-header {
    padding: 15px 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050a1f, #1a2b5e);
    border-bottom: 3px solid #f5b700;
}

        .area-header::after {
            content: '';
            position: absolute;
            right: -20px;
            top: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .area-body {
    padding: 15px 12px;
}

        .area-address {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.5;
        }

        .area-address i {
            margin-top: 3px;
            color: var(--primary);
            font-size: 16px;
        }

        .area-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .area-list li {
            font-size: 14px;
            color: var(--text-main);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        .area-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .area-list li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent);
            font-size: 12px;
        }

        .province-dropdown {
            margin-top: 5px;
        }

        .province-dropdown summary {
            font-weight: 600;
            font-size: 13px;
            color: var(--primary);
            cursor: pointer;
            padding: 10px 15px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            list-style: none; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s;
            margin-bottom: 0;
        }

        .province-dropdown summary::-webkit-details-marker {
            display: none; 
        }
        
        .province-dropdown summary::after {
            content: '\f107'; 
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.3s;
            color: var(--accent);
        }

        .province-dropdown[open] summary::after {
            transform: rotate(180deg);
        }

        .province-dropdown[open] summary {
            margin-bottom: 12px;
            background: rgba(245, 183, 0, 0.05);
            border-color: rgba(245, 183, 0, 0.3);
        }

        .province-dropdown .area-list {
            animation: fadeInDown 0.3s ease-out;
            padding-bottom: 10px;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        
        .map-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 24px;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            box-shadow: 0 20px 40px rgba(5, 10, 31, 0.15);
            position: relative;
            overflow: hidden;
        }

        .map-banner::before {
            content: '\f279';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -40px;
            font-size: 200px;
            color: rgba(255,255,255,0.03);
            transform: rotate(-15deg);
        }

        .map-banner-text h3 {
            color: white;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .map-banner-text p {
            color: #cbd5e1;
            font-size: 15px;
            max-width: 500px;
        }

        .map-banner-btn {
            background: var(--accent);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 8px 20px var(--accent-glow);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .map-banner-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px var(--accent-glow);
        }

        
        @media (max-width: 1200px) {
            .area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
            .area-header {
    padding: 15px 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050a1f, #1a2b5e);
    border-bottom: 3px solid #f5b700;
}
            .area-body {
    padding: 15px 12px;
}
        }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 38px; }
            .map-banner { flex-direction: column; text-align: center; gap: 25px; }
            .area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
        }

        @media (max-width: 768px) {
            .content-card { padding: 30px; }
            .hero { padding: 100px 5% 80px; }
            .hero h1 { font-size: 32px; }
            .old-area-list strong { display: block; margin-bottom: 5px; }
            .area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
        }
    

        :root {
            --primary: #050a1f;
            --primary-light: #0d1a44;
            --accent: #f5b700;
            --accent-glow: rgba(245, 183, 0, 0.4);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f4f7fb;
            --surface: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 75px;
        }

        
        .page-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: white;
            padding: 40px 5% 60px;
            text-align: center;
            position: relative;
        }

        .page-header h1 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff, #f5b700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            font-size: 18px;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .header-accent {
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        
        .container {
    max-width: 1400px;
    margin: -40px auto 80px;
    padding: 0 2%;
    position: relative;
    z-index: 10;
}

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

        .service-card {
            background: var(--surface);
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: 0 20px 40px rgba(5, 10, 31, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(5, 10, 31, 0.1);
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(13, 26, 68, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon i {
            font-size: 36px;
            color: var(--primary);
            transition: color 0.4s ease;
        }

        .service-card:hover .service-icon i {
            color: var(--accent);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            text-align: justify;
            margin-bottom: 20px;
        }

        .number-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 40px;
            font-weight: 900;
            color: rgba(5, 10, 31, 0.03);
            z-index: 0;
            line-height: 1;
            transition: color 0.4s ease;
        }

        .service-card:hover .number-badge {
            color: rgba(5, 10, 31, 0.08);
        }

        .btn-details {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
            padding: 10px 18px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .btn-details:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

    

        :root {
            --primary: #050a1f;
            --primary-light: #0d1a44;
            --accent: #f5b700;
            --accent-glow: rgba(245, 183, 0, 0.4);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f4f7fb;
            --surface: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 75px;
        }

        
        .page-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: white;
            padding: 40px 5% 60px;
            text-align: center;
            position: relative;
        }

        .page-header h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            font-size: 18px;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .header-accent {
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        
        .container {
    max-width: 1400px;
    margin: -40px auto 80px;
    padding: 0 2%;
    position: relative;
    z-index: 10;
}

        .content-card {
            background: var(--surface);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(5, 10, 31, 0.08);
        }

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

        .content-section:last-child {
            margin-bottom: 0;
        }

        .content-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-section h2 i {
            color: var(--accent);
            font-size: 20px;
        }

        .content-section p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 15px;
            text-align: justify;
        }

        .tugas-list {
            list-style: none;
            margin-top: 20px;
        }

        .tugas-list li {
            font-size: 16px;
            color: var(--text-main);
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .tugas-list li i {
            color: var(--accent);
            font-size: 18px;
            margin-top: 4px;
        }

    

        
        .logo-instansi {
            width: 220px;
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }
    

    
    .navbar {
        background: rgba(5, 10, 31, 0.75); 
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed; 
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: 'Inter', sans-serif;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 15px;
        color: white;
        text-decoration: none;
    }

    .nav-brand img {
        height: 45px;
    }

    .nav-brand-text {
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 0.5px;
        color: white;
    }

    .nav-brand-sub {
        font-size: 11px;
        color: #f5b700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-links {
        display: flex;
        gap: 25px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-links a:hover {
        color: #f5b700;
    }

    .nav-links .active {
        color: #f5b700;
        font-weight: 600;
    }

    .hamburger {
        display: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }

        .nav-links {
            
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            
            
            flex-direction: column;
            width: calc(100% - 40px);
            position: absolute;
            top: calc(100% + 15px);
            left: 20px;
            right: 20px;
            padding: 15px 0;
            gap: 5px;
            
            
            background: rgba(13, 26, 68, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            
            
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: left;
        }

        .nav-links.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        
        .nav-links li {
            width: 100%;
            padding: 0 15px;
        }

        .nav-links a {
            display: block;
            padding: 12px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .nav-links a:hover, .nav-links .active {
            background: rgba(245, 183, 0, 0.15);
            color: #f5b700;
            padding-left: 25px; 
        }
    }


    
    .footer {
        background-color: var(--primary);
        color: #cbd5e1;
        padding: 80px 5% 20px;
        font-size: 14px;
        position: relative;
        margin-top: 80px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer-brand img {
        height: 60px;
    }

    .footer-brand h4 {
        color: white;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

    .footer-contact {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
        align-items: flex-start;
    }

    .contact-item i {
        font-size: 18px;
        color: var(--accent);
        margin-top: 3px;
    }

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

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(255,255,255,0.05);
        color: white;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 16px;
    }

    .social-links a:hover {
        background: var(--accent);
        color: var(--primary);
        transform: translateY(-3px);
    }

    .footer-title {
        color: white;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 3px;
        background: var(--accent);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer-links a::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        color: var(--accent);
        transition: transform 0.3s;
    }

    .footer-links a:hover {
        color: white;
    }
    
    .footer-links a:hover::before {
        transform: translateX(4px);
    }

    .map-container {
        width: 100%;
        height: 250px;
        border-radius: 16px;
        overflow: hidden;
        border: 4px solid rgba(255,255,255,0.05);
        position: relative;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-bottom p {
        margin-bottom: 8px;
    }

    .footer-bottom .highlight {
        color: var(--accent);
        font-weight: 600;
        font-size: 15px;
    }

    
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

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

/* Added Responsiveness Fixes */
@media (max-width: 1024px) {
    .quick-access-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .area-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
    .quick-access-grid { grid-template-columns: 1fr !important; }
    .area-grid { grid-template-columns: 1fr !important; }
}
