    body,
    html {
        background-color: #f8f9fa;
        font-family: 'Inter', sans-serif;
        /* Asegurar fuente */
    }

    /* Estilos para el Hero Section */
    .help-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x600/343a40/ffffff?text=AYUDA');
        background-size: cover;
        background-position: center;
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
        padding: 6rem 0;
        /* Padding consistente */
        border-radius: 0.5rem;
        /* Bordes redondeados */
        margin-top: 1.5rem;
        /* Margen superior */
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        /* Sombra */
    }

    .help-hero h1 {
        font-size: 3.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .help-hero p {
        font-size: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.5;
    }

    /* Estilos para las secciones principales (FAQ y Devoluciones) */
    .faq-section,
    .returns-section {
        background-color: #ffffff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
        padding: 2.5rem;
        margin-bottom: 3rem;
        border-radius: 1rem;
        /* Bordes redondeados */
    }

    /* Estilos del acordeón */
    .accordion-item {
        border: 1px solid #e0e0e0;
        border-radius: 0.5rem;
        margin-bottom: 0.75rem;
        overflow: hidden;
    }

    .accordion-button {
        background-color: #f0f0f0;
        transition: background-color 0.2s ease, color 0.2s ease;
        padding: 1.2rem 1.5rem;
        /* Padding consistente */
        font-weight: bold;
        /* Negrita */
        color: #343a40;
        /* Color de texto */
        border-radius: 0.5rem;
        /* Bordes redondeados */
    }

    .accordion-button:hover {
        background-color: #e2e6ea;
        color: #000;
    }

    .accordion-button:not(.collapsed) {
        background-color: #007bff;
        color: white;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    }

    .accordion-body {
        padding: 1.5rem;
        color: #495057;
        line-height: 1.6;
    }

    .contact-main-section {
        background-color: #ffffff;
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
        padding: 2.5rem;
        /* Ajustado */
        border-radius: 1rem;
        /* Consistencia */
        margin-top: 3rem;
        /* Margen superior */
        margin-bottom: 3rem;
        /* Margen inferior */
    }

    .contact-main-section h2 i {
        font-size: 2rem;
        color: #666;
    }

    .contact-method-card {
        border: 1px solid #e0e0e0;
        background-color: #fcfcfc;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease;
        padding: 20px;
        /* Consistencia */
        border-radius: 0.75rem;
        /* Consistencia */
        text-decoration: none;
        /* Asegurar no subrayado */
        color: inherit;
        /* Heredar color */
        height: 100%;
        /* Asegurar altura consistente */
    }

    .contact-method-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: #007bff;
    }

    .icon-wrapper {
        width: 90px;
        /* Aumentado para icono más grande */
        height: 90px;
        /* Aumentado para icono más grande */
        border-radius: 50%;
        /* CLAVE: Asegura un círculo */
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 15px;
        /* Ajustado para el tamaño del icono y el círculo */
        aspect-ratio: 1 / 1;
        /* CLAVE: Fuerza la relación de aspecto cuadrada */
    }

    .icon-wrapper i {
        font-size: 3.8rem;
        /* Ícono más grande */
        color: #555;
    }

    .contact-button {
        border: 1px solid #777;
        color: #333;
        background-color: transparent;
        transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        padding: 10px 25px;
        /* Consistencia */
        border-radius: 25px;
        /* Consistencia */
        white-space: nowrap;
        /* Evita que el texto se rompa */
        text-decoration: none;
        /* No subrayado */
        display: inline-block;
        /* Para padding/centrado */
        margin-top: 10px;
        /* Espacio superior */
    }

    .contact-button:hover {
        background-color: #f0f0f0;
        border-color: #555;
        color: #000;
        transform: translateY(-2px);
    }

    /* Media queries para ajustar el apilamiento en pantallas pequeñas */
    @media (max-width: 991.98px) {
        .help-hero h1 {
            font-size: 2.8rem;
        }

        .help-hero p {
            font-size: 1.2rem;
        }

        .contact-main-section {
            padding: 1.5rem;
        }

        .contact-main-section h2 {
            font-size: 1.5rem;
        }

        .contact-method-card {
            flex-direction: column;
            text-align: center;
            gap: 15px;
            padding: 20px;
        }

        .icon-wrapper {
            width: 70px;
            /* Más pequeño en tablets */
            height: 70px;
            font-size: 2.8rem;
            /* Ícono más pequeño en tablets */
        }

        .text-content {
            align-items: center;
        }

        .text-content h3 {
            font-size: 1.2rem;
        }

        .text-content p {
            font-size: 0.9rem;
        }

        .contact-button {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 767.98px) {
        .help-hero {
            padding: 4rem 0;
        }

        .help-hero h1 {
            font-size: 2.2rem;
        }

        .help-hero p {
            font-size: 1rem;
        }

        .faq-section,
        .returns-section {
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .accordion-button {
            padding: 1rem 1.2rem;
        }

        .contact-main-section h2 {
            font-size: 1.3rem;
        }

        .contact-main-section p.lead {
            font-size: 0.9rem;
        }

        .contact-method-card {
            margin-bottom: 1rem;
        }
    }