        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');
        body { background-color: #060910; color: #e2e8f0; font-family: 'Plus Jakarta Sans', sans-serif; }
        .glass-card { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(16px); }
        #map { height: 500px; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.1); }
        .leaflet-tile-pane { filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%); }
        .marker-pulse { width: 12px; height: 12px; border-radius: 50%; border: 2px solid white; transition: all 0.3s ease; }
        .marker-blue { background: #3b82f6; box-shadow: 0 0 10px #3b82f6; animation: pulse 2s infinite; }
        .marker-green { background: #10b981; box-shadow: 0 0 15px #10b981; transform: scale(1.2); }
        .marker-red { background: #ef4444; box-shadow: 0 0 15px #ef4444; transform: scale(1.2); }
        @keyframes pulse { 0% { transform: scale(0.8); opacity: 0.7; } 70% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.8); opacity: 0.7; } }
        .custom-scrollbar::-webkit-scrollbar { width: 4px; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
        .leaflet-popup-content-wrapper { background: white; color: #0f172a; border-radius: 12px; padding: 0; }
        .leaflet-popup-tip { background: white; }

        /* FAQ Accordion Styles */
        .faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .faq-question { cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; transition: color 0.3s; }
        .faq-question:hover { color: #3b82f6; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }
        .faq-item.active .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
        .faq-item.active .faq-icon { transform: rotate(180deg); color: #3b82f6; }
        .faq-icon { transition: transform 0.3s; }