        .myhra-section {
            font-family: 'Cormorant Garamond', 'Georgia', serif;
           /*background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');*/ /*CAMBIAR EL FONDO DE IMAGEN DE SER NECESARIO WAYNE JOSE*/
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            color: #000000;
            position: relative;
            padding: 40px 20px;
        }

        .myhra-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(231, 229, 229, 0.5);
            z-index: 1;
        }

        .myhra-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }


        .myhra-header {
            text-align: center;
            margin-bottom: 80px;
        }
/* aqui se puede ponerun titulo de ser necesario WAYNE
        .myhra-header h1 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin: 0;
        }
*/
        .myhra-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; 
    padding: 0 20px;
}

        .myhra-service-card {
            text-align: center;
        }

        .myhra-service-card h2 {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 25px;
            line-height: 1.4;
            text-shadow: 2px 2px 4px rgba(241, 239, 239, 0.7);
        }

        /* Reduce el interlineado y margen entre párrafos */
/* Reduce el interlineado y margen entre párrafos */
.myhra-service-card p {
    font-size: 1rem; /* Cambia de 0.5rem a un tamaño más estándar, como 1rem */
    line-height: 1.5; /* Ajusta para mejor legibilidad */
    margin-bottom: 15px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

        .myhra-service-card a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: normal; /* O usa: 0.5px (muy poco) */
    /* letter-spacing: 0.5px; ← alternativa si quieres un poco de espacio */
    border-bottom: 1px solid #130606;
    padding-bottom: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 5px 0;
}

        .myhra-service-card a:hover {
            border-bottom: 2px solid #fff;
            padding-bottom: 1px;
        }

  .myhra-list {
    text-align: left;
    max-width: 300px;
    margin: 20px auto 0; /* Cambié de 30px a 20px */
}

        .myhra-list h3 {
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            text-align: center;
        }

        .myhra-list ul {
            list-style: none;
            padding: 0; 
            margin: 0;
            font-family: Verdana, Geneva, sans-serif;
        }

/* Reduce el espacio entre elementos de la lista */
.myhra-list li {
    font-size: 1rem; /* Asegura un tamaño legible (puedes ajustar, ej: 1.1rem) */
    font-weight: 600; /* Aplica un peso semi-negrita. Otras opciones: 700 (bold), 500 (medium) [citation:2][citation:4] */
    line-height: 1.4;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    padding-left: 15px;
    position: relative;
}

        .myhra-list li::before {
            content: '–';
            position: absolute;
            left: 0;
        }

        /* Añade esto al final de tu CSS */
.myhra-list a {
    border-bottom: none !important;
    text-decoration: none;
}

.myhra-list a:hover {
    border-bottom: none !important;
}
        @media (max-width: 768px) {
            .myhra-section {
                padding: 60px 20px;
            }

            .myhra-header h1 {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }

            .myhra-services {
                grid-template-columns: 1fr;
            }

            .myhra-service-card h2 {
                font-size: 1.5rem;
            }
        }