  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            text-align: center;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #1e1e1e;
            padding: 15px 20px;
            position: relative;
            z-index: 1000;
        }
        .logo img {
            width: 50px;
        }
        .nav-links {
            list-style: none;
            display: flex;
        }
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
        }
         .submenu {
            display: none;
  
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .nav-links li:hover .submenu {
            color: #ffcc00;
            display: block;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 868px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 50px;
                left: 0;
                background-color: #333;
                width: 100%;
                text-align: center;
                z-index: 1001;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
        }
        .carousel {
            position: relative;
            width: 100%;
            height: 50vh;
            overflow: hidden;
        }
        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .carousel img.active {
            opacity: 1;
        }
        .info-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 40px;
            background-color: #f4f4f4;
            text-align: center;
        }
        .info-item {
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .info-item img {
            width: 50px;
            height: 50px;
        }
        .google-maps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 30px;
            text-align: center;
        }
        .facebook-section{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 30px;
            text-align: center;
        }
        .facebook-section iframe{
            max-width: 100%;
            height: 600px;
        }
        .google-maps iframe {
            max-width: 100%;
            height: 300px;
        }
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }
        .franja {
            display: flex;
            align-items: center;
            height: 200px;
            background-color: #fff;
            padding: 20px;
        }
        .burbuja {
            width: 175px;
            height: 175px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 60px;
            margin-top: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .burbuja img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        .franja-texto {
            flex: 1;
            padding-left: 20px;
            font-size: 18px;
        }
         .franja2 {
            display: flex;
            align-items: center;
            height: 200px;
            background-color: #f4f4f4;
            padding: 20px;
        }
        .burbuja2 {
            width: 175px;
            height: 175px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 60px;
            margin-top: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .burbuja2 img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        .franja-texto2 {
            flex: 1;
            padding-left: 20px;
            font-size: 18px;
        }