        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            margin: 0;
            padding: 0;
        }
        
        .highlighted-text {
            position: relative;
            font-weight: bold;
            color: #002460;
        }

        .highlighted-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px; /* Ajusta la posición del subrayado según sea necesario */
            height: 4px; /* Grosor del subrayado */
            width: 100%;
            background-color: #00c3ff; /* Color del subrayado celeste */
            z-index: -1; /* Colocar el subrayado detrás del texto */
        }        
        
        .choose-your-pack {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pack-title-1 {
            text-align: center;
            color: #002460;
            font-weight: bold;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .separator-wide {
            width: 100%;
            height: 4px;
            background-color: #00c3ff;
            margin: 20px 0;
        }
        
        
        
        .content-text {
            margin: 20px 0;
            line-height: 1.6;
            text-align: left;
        }
        
        .plans-list {
            list-style-type: none;
            padding: 0;
            font-weight: bold;
        }
        
        .plans-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        
        .plans-list li span {
            font-size: 1em;
        }
        
        