
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f4f4f9;
            color: #333;
        }

        .header-section {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            text-align: center;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container img {
            height: 40px; /* Ajusta el tamaño de tu logo */
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.2em;
            font-weight: bold;
            color: #333;
        }

        .nav-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px; /* Espacio entre los elementos del menú */
        }

        .nav-menu a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 0.95em;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #007bff;
        }

        .denuncia-button {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .denuncia-button:hover {
            background-color: #0056b3;
        }

        .page-title-section {
            background-color: #fff;
            padding: 50px 0;
            border-bottom: 1px solid #eee;
        }

        .page-title-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-title-content h1 {
            font-size: 3em;
            font-weight: bold;
            color: #333;
            margin: 0;
            line-height: 1.1;
        }

        .page-title-content p {
            font-size: 1.2em;
            color: #666;
            margin-top: 10px;
            margin-bottom: 0;
        }

        /* Contenedor principal de las tarjetas */
        .cards-grid-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Columnas responsivas */
            gap: 30px; /* Espacio entre las tarjetas */
        }

        /* Estilo base de cada tarjeta */
        .location-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden; /* Para que la sombra y el mapa queden dentro */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Para que el contenido y el mapa se separen */
        }

        /* Contenido de texto dentro de la tarjeta */
        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            font-size: 1.3em;
            color: #333;
            margin-top: 0;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-content h3 .arrow-icon {
            font-size: 1.5em;
            color: #007bff;
            transition: transform 0.3s ease;
        }

        .card-content p {
            font-size: 0.95em;
            color: #666;
            line-height: 1.5;
            margin-bottom: 5px;
        }

        /* === EFECTO HOVER EN LAS TARJETAS === */
        .location-card:hover {
            transform: translateY(-5px); /* Eleva ligeramente la tarjeta */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
            cursor: pointer;
        }

        .location-card:hover .arrow-icon {
            transform: translateX(5px); /* Mueve la flecha ligeramente a la derecha */
        }
        /* ================================= */

        /* Estilo para el contenedor del mapa */
        .map-container {
            width: 100%;
            height: 200px; /* Altura fija para los mapas */
            border-top: 1px solid #eee; /* Separador visual del contenido */
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none; /* Elimina el borde predeterminado del iframe */
            border-bottom-left-radius: 8px; /* Redondea las esquinas inferiores del mapa */
            border-bottom-right-radius: 8px;
        }
    