        /* Estilos generales */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f2f2f2;
        }

        /* Encabezado */
        .header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            color: #fff;
            padding: 10px 20px;
            flex-wrap: wrap;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 50px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            margin-right: 20px;
        }

        .header-text {
            font-size: 18px;
            color: #fff;
            text-align: center;
            margin: 0;
            flex: 1;
        }

        .header-links {
            display: flex;
            align-items: center;
        }

        .header-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            margin-left: 20px;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            background-color: #333;
            color: white;
            padding: 10px;
            border: none;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown:hover .dropbtn {
            background-color: #444;
        }

        /* Contenedor principal */
        .container {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .split {
            display: flex;
            flex-direction: row;
            width: 100%;
            flex-wrap: wrap;
        }

        .left, .right {
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

        .left {
            background-color: #f2f2f2;
            overflow-y: auto;
        }

        .left ul {
            list-style-type: none;
            padding: 0;
        }

        .left ul li {
            margin-bottom: 30px;
        }

        .left ul li a {
            display: block;
            text-decoration: none;
            color: #007bff;
            font-size: 24px;
            font-weight: bold;
            text-align: left;
            margin-bottom: 10px;
        }

        .left ul li p, .left ul li ul {
            margin-left: 20px;
            text-align: justify;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }

        .left ul li ul li {
            list-style: disc;
        }

        .right {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background-color: #fff;
        }

        /* Imagen de Hero */
        .hero-img {
            max-width: 100%;
            max-height: 70vh;
            height: auto;
            border: 1px solid #ccc;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Contenido de las secciones */
        .section-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            padding-top: 10px;
            margin-left: 20px;
            margin-bottom: 20px;
            background-color: #fff;
            border-left: 3px solid #007bff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 10px 20px;
            border-radius: 5px;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .whatsapp-icon {
            width: 20px;
            height: 20px;
            vertical-align: middle;
            margin-right: 5px;
        }

        /* Responsive Design */
        @media(min-width: 600px) {
            .left, .right {
                width: 50%;
            }
        }

        @media(max-width: 600px) {
            .logo {
                height: 40px;
            }

            .logo-text {
                font-size: 20px;
            }

            .header-links a {
                font-size: 14px;
            }

            .left ul li a {
                font-size: 20px;
            }
        }