
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            border-radius: 20px;
        }
        
        .loading-spinner {
            width: 32px;
            height: 32px;
            border: 3px solid #e5e7eb;
            border-top: 3px solid #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            background: #ffffff;
            padding: 16px;
            border-radius: 20px;
            margin-bottom: 32px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        @media (max-width: 768px) {
            .tabs {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 12px;
            }
            
            .header h1 {
                font-size: 1.75rem;
            }
            
            body {
                padding: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .tabs {
                grid-template-columns: 1fr;
                gap: 8px;
            }
        }
        
        .tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100px;
            padding: 16px;
            border-radius: 16px;
            border: 2px solid transparent;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 500;
            position: relative;
        }
        
        .tab:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.1);
        }
        
        .tab.active {
            color: white;
            box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
        
        .tab-icon {
            width: 28px;
            height: 28px;
            margin-bottom: 8px;
        }
        
        .inline-icon {
            width: 16px;
            height: 16px;
        }
        
        .map-container {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            position: relative;
        }
        
        .map-header {
            padding: 24px;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .map-header h2 {
            font-size: 1.5rem;
            font-weight: 300;
            color: #1f2937;
            margin-bottom: 8px;
        }
        
        .map-header p {
            color: #6b7280;
        }
        
        #map {
            width: 100%;
            height: 800px;
        }
        
        @media (max-width: 768px) {
            #map {
                height: 600px;
            }
            
            .map-header {
                padding: 16px;
            }
            
            .tab {
                height: 80px;
                padding: 12px;
            }
            
            .tab-icon {
                width: 24px;
                height: 24px;
            }
        }
        
        .legend {
            padding: 24px;
            background: white;
            border-top: 1px solid #e5e7eb;
        }
        
        .legend-info {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .legend-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 14px;
        }
        
        .legend-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .cta-container {
background: linear-gradient(to right, rgba(225, 225, 225, 0.05), rgba(59, 130, 246, 0.1));
  border-radius: 16px;
  padding: 15px;
  border: 1px solid rgba(131, 133, 136, 0.2);
        }
        
        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 16px;
        }
        
        @media (min-width: 768px) {
            .cta-content {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }
        
        .cta-text h3 {
    font-size: 25px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
        }
        
        .cta-text p {
            color: #000;
            font-size: 15px;
        }
        
        .cta-button {
            background: #16968b;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 24px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
            align-self: flex-start;
        }
        
        @media (min-width: 768px) {
            .cta-button {
                align-self: center;
            }
        }
        
        .cta-button:hover {
            background: #1f2937;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }
        
        .cta-button .inline-icon {
            transition: transform 0.2s ease;
        }
        
        .cta-button:hover .arrow-icon {
            transform: translateX(4px);
        }
        
        .cta-disclaimer {
            margin-top: 16px;
            font-size: 12px;
            color: #6b7280;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            padding: 12px;
        }
        
        .cta-disclaimer strong {
            font-weight: 500;
        }
        
        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            padding: 16px;
        }
        
        .modal-content {
            max-width: 500px;
            margin: 50px auto;
            background: white;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6b7280;
            padding: 4px;
        }
        
        .modal-header {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .modal-header h3 {
     font-size: 20px;
  font-weight: 400;
  color: #16968b;
  margin-bottom: 15px;
        }
        
        .modal-header p {
            color: #000;
            font-size: 15px;
        }
        
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.2s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-submit {
            width: 100%;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .form-submit:hover {
            background: #2563eb;
        }
        
        .form-submit:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }



        /*
        BUTTONS CSS
        AND HEADER
        */

.map-header h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.map-header p {
  font-size: 20px;
  font-weight: 400  ;
  text-align: center;
  color: #000;
  margin-top: 8px;
}

