
    /* CSS Variables for consistent theming */
    :root {
        --primary-color: #2d3b80;
        --primary-light: #0047ab;
        --primary-dark: #1e2959;
        --accent-color: #4a90e2;
    }

    /* Compact minimal styles for Funciones (horizontal) */
    .funciones-section {
        background: #fff;
    }

    .funciones-header {
        margin-bottom: 1rem;
    }

    .funciones-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
        text-shadow: none;
    }

    .funciones-subtitle {
        font-size: 0.95rem;
        color: #6b7280;
    }

    .funciones-horizontal {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: stretch;
    }
    .main-contact {
        background: #354393;
        color: #fff;
    }

    .funcion-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #ffffff;
    }

    .funcion-icon-small {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: #eef2ff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        flex-shrink: 0;
    }

    .funcion-icon-small i {
        font-size: 1rem;
        color: var(--primary-color);
    }

    .funcion-text h4 {
        margin: 0;
        font-size: 1rem;
        color: #111827;
        font-weight: 600;
    }

    .funcion-text p {
        margin: 0;
        font-size: 0.9rem;
        color: #6b7280;
    }

    /* Minimal contact info block */
    .contact-info-min {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }

    .contact-title-min {
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.5rem;
    }

    .contact-grid-min {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 0.75rem;
    }

    .contact-card-min {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 0.75rem;
        background: #fafafa;
    }

    .contact-role-min {
        font-size: 0.85rem;
        color: #374151;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .contact-name-min {
        font-size: 0.95rem;
        color: #111827;
        margin-bottom: 0.15rem;
    }

    .contact-ext-min {
        font-size: 0.95rem;
        color: var(--primary-light);
        font-weight: 600;
    }

    /* Mini table styles for contact info */
    .contact-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 0.5rem;
    }

    .contact-table-min {
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        font-size: 0.95rem;
    }

    .contact-table-min th,
    .contact-table-min td {
        padding: 0.5rem 0.75rem;
        border: 1px solid #e5e7eb;
        text-align: left;
        vertical-align: top;
    }

    .contact-table-min thead th {
        background: #f3f4f6;
        color: #374151;
        font-weight: 600;
        white-space: nowrap;
    }

    .contact-table-min tbody tr:nth-child(even) {
        background: #fafafa;
    }

    @media(max-width: 576px) {

            .contact-table-min th,
            .contact-table-min td {
                padding: 0.5rem;
                font-size: 0.9rem;
            }
        }

        /* Modern Reclamos Hero Section */
        .reclamos-hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .reclamos-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

                0%,
                100% {
                    transform: translateY(0px) rotate(0deg);
                }

                50% {
                    transform: translateY(-20px) rotate(180deg);
                }
            }

            .reclamos-hero-content {
                position: relative;
                z-index: 2;
            }

            .reclamos-content-wrapper {
                display: grid;
                grid-template-columns: auto 1fr auto;
                gap: 3rem;
                align-items: center;
                max-width: 1200px;
                margin: 0 auto;
            }

            /* Icon Section */
            .reclamos-icon-container {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .reclamos-icon {
                width: 120px;
                height: 120px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

            .reclamos-icon:hover {
                transform: scale(1.05);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

            .reclamos-icon i {
                font-size: 3rem;
                color: white;
                animation: pulse 2s infinite;
            }

            @keyframes pulse {

                    0%,
                    100% {
                        opacity: 1;
                    }

                    50% {
                        opacity: 0.7;
                    }
                }

                /* Badge */
                .reclamos-badge {
                    display: inline-flex;
                    align-items: center;
                    background: rgba(255, 255, 255, 0.2);
                    color: white;
                    padding: 8px 16px;
                    border-radius: 25px;
                    font-size: 0.9rem;
                    font-weight: 500;
                    margin-bottom: 1rem;
                    backdrop-filter: blur(10px);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                }

                /* Title */
                .reclamos-title {
                    color: white;
                    font-size: 2.5rem;
                    font-weight: 700;
                    line-height: 1.2;
                    margin-bottom: 1.5rem;
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                }

                .reclamos-highlight {
                    background: linear-gradient(45deg, var(--accent-color), #87ceeb);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    position: relative;
                }

                /* Description */
                .reclamos-description {
                    color: rgba(255, 255, 255, 0.9);
                    font-size: 1.1rem;
                    line-height: 1.6;
                    margin-bottom: 2rem;
                    max-width: 500px;
                }

                /* Features */
                .reclamos-features {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    margin-bottom: 2rem;
                }

                .feature-item {
                    display: flex;
                    align-items: center;
                    gap: 0.75rem;
                    color: rgba(255, 255, 255, 0.9);
                    font-weight: 500;
                }

                .feature-item i {
                    width: 20px;
                    text-align: center;
                    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
                }

                /* CTA Button */
                .reclamos-action-section {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 1rem;
                }

                .reclamos-cta-button {
                    position: relative;
                    background: linear-gradient(45deg, var(--accent-color), var(--primary-light));
                    border: none;
                    border-radius: 50px;
                    padding: 18px 35px;
                    color: white;
                    font-size: 1.1rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
                    overflow: hidden;
                    min-width: 280px;
                    text-align: center;
                }

                .reclamos-cta-button::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(45deg, var(--primary-light), var(--accent-color));
                    opacity: 0;
                    transition: opacity 0.3s ease;
                }

                .reclamos-cta-button:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
                }

                .reclamos-cta-button:hover::before {
                    opacity: 1;
                }

                .reclamos-cta-button:active {
                    transform: translateY(-1px);
                }

                .button-content {
                    position: relative;
                    z-index: 2;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.5rem;
                }

                .button-shine {
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                    transition: left 0.6s ease;
                }

                .reclamos-cta-button:hover .button-shine {
                    left: 100%;
                }

                /* Help Text */
                .reclamos-help-text {
                    color: rgba(255, 255, 255, 0.8);
                    font-size: 0.9rem;
                    margin: 0;
                    text-align: center;
                    max-width: 300px;
                }

                /* Responsive Design */
                @media(max-width: 992px) {
                        .reclamos-content-wrapper {
                            grid-template-columns: 1fr;
                            text-align: center;
                            gap: 2rem;
                        }

                        .reclamos-title {
                            font-size: 2rem;
                        }

                        .reclamos-icon {
                            width: 100px;
                            height: 100px;
                        }

                        .reclamos-icon i {
                            font-size: 2.5rem;
                        }
                    }

                    @media(max-width: 768px) {
                            .reclamos-hero-section {
                                padding: 60px 0;
                            }

                            .reclamos-title {
                                font-size: 1.8rem;
                            }

                            .reclamos-description {
                                font-size: 1rem;
                            }

                            .reclamos-cta-button {
                                min-width: 250px;
                                padding: 16px 30px;
                                font-size: 1rem;
                            }

                            .reclamos-features {
                                align-items: center;
                            }
                        }

                        /* Minimalistic Contact Section */
                        .contact-container {
                            padding: 0.5rem 0;
                        }

                        .contact-item {
                            display: flex;
                            align-items: center;
                            margin-bottom: 0.5rem;
                            transition: all 0.4s ease;
                            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                        }

                        .contact-item:last-child {
                            border-bottom: none;
                        }

                        .contact-item:hover {
                            opacity: 0.8;
                        }

                        .contact-icon {
                            width: 20px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin-right: 0.75rem;
                            flex-shrink: 0;
                            color: rgba(255, 255, 255, 0.7);
                        }

                        .contact-info {
                            flex: 1;
                            color: white;
                        }

                        .contact-title {
                            font-size: 0.85rem;
                            font-weight: 500;
                            margin-bottom: 0.2rem;
                            color: rgba(255, 255, 255, 0.7);
                            text-transform: uppercase;
                            letter-spacing: 0.5px;
                        }

                        .contact-detail {
                            font-size: 1rem;
                            margin: 0;
                            color: white;
                            font-weight: 300;
                        }

                        .contact-icon i {
                            font-size: 0.9rem;
                        }

                        /* Responsive */
                        @media(max-width: 768px) {
                                .contact-item {
                                    padding: 0.6rem 0;
                                }

                                .contact-title {
                                    font-size: 0.8rem;
                                }

                                .contact-detail {
                                    font-size: 0.95rem;
                                }
                            }

                            /* Simple hover for clickable items */
                            .contact-item.clickable {
                                cursor: pointer;
                            }

                            .contact-item.clickable:hover {
                                opacity: 1;
                            }

                            /* Funciones Section Styles */
                            .funciones-section {
                                padding: 20px 0;
                                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                                position: relative;
                                overflow: hidden;
                            }

                            .funciones-section::before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23dee2e6" fill-opacity="0.3"><circle cx="30" cy="30" r="2"/></g></svg>');
                                animation: float 25s ease-in-out infinite;
                            }

                            .funciones-header {
                                text-align: center;
                                margin-bottom: 4rem;
                                position: relative;
                                z-index: 2;
                            }

                            .funciones-title {
                                font-size: 2.5rem;
                                font-weight: 700;
                                color: var(--primary-color);
                                margin-bottom: 1rem;
                                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                            }

                            .funciones-subtitle {
                                font-size: 1.2rem;
                                color: #6c757d;
                                max-width: 600px;
                                margin: 0 auto;
                                line-height: 1.6;
                            }

                            .funciones-grid {
                                display: grid;
                                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                                gap: 2rem;
                                max-width: 1200px;
                                margin: 0 auto;
                                position: relative;
                                z-index: 2;
                            }

                            .funcion-card {
                                background: white;
                                border-radius: 20px;
                                padding: 2.5rem;
                                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                                border: 1px solid rgba(255, 255, 255, 0.2);
                                position: relative;
                                overflow: hidden;
                            }

                            .funcion-card::before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                height: 4px;
                                background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
                                transform: scaleX(0);
                                transition: transform 0.3s ease;
                            }

                            .funcion-card:hover {
                                transform: translateY(-10px);
                                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
                            }

                            .funcion-card:hover::before {
                                transform: scaleX(1);
                            }

                            .funcion-icon {
                                width: 80px;
                                height: 80px;
                                background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                                border-radius: 20px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                margin-bottom: 1.5rem;
                                box-shadow: 0 10px 25px rgba(45, 59, 128, 0.3);
                                transition: all 0.3s ease;
                            }

                            .funcion-card:hover .funcion-icon {
                                transform: scale(1.1) rotate(5deg);
                                box-shadow: 0 15px 35px rgba(45, 59, 128, 0.4);
                            }

                            .funcion-icon i {
                                font-size: 2rem;
                                color: white;
                                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
                            }

                            .funcion-content {
                                position: relative;
                            }

                            .funcion-title {
                                font-size: 1.5rem;
                                font-weight: 600;
                                color: var(--primary-color);
                                margin-bottom: 1rem;
                                line-height: 1.3;
                            }

                            .funcion-description {
                                font-size: 1rem;
                                color: #6c757d;
                                line-height: 1.7;
                                margin: 0;
                            }

                            /* Responsive Design for Funciones Section */
                            @media(max-width: 992px) {
                                    .funciones-grid {
                                        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                                        gap: 1.5rem;
                                    }

                                    .funciones-title {
                                        font-size: 2rem;
                                    }

                                    .funcion-card {
                                        padding: 2rem;
                                    }
                                }

                                @media(max-width: 768px) {
                                        .funciones-section {
                                            padding: 60px 0;
                                        }

                                        .funciones-title {
                                            font-size: 1.8rem;
                                        }

                                        .funciones-subtitle {
                                            font-size: 1.1rem;
                                        }

                                        .funciones-grid {
                                            grid-template-columns: 1fr;
                                            gap: 1.5rem;
                                        }

                                        .funcion-card {
                                            padding: 1.8rem;
                                        }

                                        .funcion-icon {
                                            width: 70px;
                                            height: 70px;
                                        }

                                        .funcion-icon i {
                                            font-size: 1.8rem;
                                        }
                                    }

                                    /* FAQ Introduction Section Styles */
                                    .faq-intro-section {
                                        padding: 60px 0;
                                        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
                                        position: relative;
                                        overflow: hidden;
                                    }

                                    .faq-intro-section::before {
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        right: 0;
                                        bottom: 0;
                                        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23dee2e6" fill-opacity="0.2"><circle cx="30" cy="30" r="2"/></g></svg>');
                                        animation: float 30s ease-in-out infinite;
                                    }

                                    .faq-intro-content {
                                        display: flex;
                                        align-items: center;
                                        gap: 3rem;
                                        max-width: 1000px;
                                        margin: 0 auto;
                                        position: relative;
                                        z-index: 2;
                                    }

                                    .faq-intro-icon {
                                        flex-shrink: 0;
                                        width: 120px;
                                        height: 120px;
                                        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                                        border-radius: 50%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        box-shadow: 0 15px 35px rgba(45, 59, 128, 0.3);
                                        transition: all 0.3s ease;
                                    }

                                    .faq-intro-icon:hover {
                                        transform: scale(1.05) rotate(5deg);
                                        box-shadow: 0 20px 40px rgba(45, 59, 128, 0.4);
                                    }

                                    .faq-intro-icon i {
                                        font-size: 3rem;
                                        color: white;
                                        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
                                    }

                                    .faq-intro-text {
                                        flex: 1;
                                    }

                                    .faq-intro-title {
                                        font-size: 2.5rem;
                                        font-weight: 700;
                                        color: var(--primary-color);
                                        margin-bottom: 1rem;
                                        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                                    }

                                    .faq-intro-description {
                                        font-size: 1.2rem;
                                        color: #6c757d;
                                        line-height: 1.7;
                                        margin-bottom: 2rem;
                                    }

                                    .faq-intro-actions {
                                        margin-top: 2rem;
                                    }

                                    .faq-intro-btn {
                                        background: linear-gradient(45deg, var(--accent-color), var(--primary-light));
                                        border: none;
                                        border-radius: 50px;
                                        padding: 15px 30px;
                                        color: white;
                                        font-size: 1.1rem;
                                        font-weight: 600;
                                        text-decoration: none;
                                        transition: all 0.3s ease;
                                        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
                                    }

                                    .faq-intro-btn:hover {
                                        transform: translateY(-3px);
                                        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
                                        color: white;
                                    }

                                    /* Responsive Design for FAQ Introduction Section */
                                    @media(max-width: 768px) {
                                            .faq-intro-section {
                                                padding: 60px 0;
                                            }

                                            .faq-intro-content {
                                                flex-direction: column;
                                                text-align: center;
                                                gap: 2rem;
                                            }

                                            .faq-intro-title {
                                                font-size: 2rem;
                                            }

                                            .faq-intro-description {
                                                font-size: 1.1rem;
                                            }

                                            .faq-intro-icon {
                                                width: 100px;
                                                height: 100px;
                                            }

                                            .faq-intro-icon i {
                                                font-size: 2.5rem;
                                            }
                                        }

                                        /* Hero Visual Section Styles */
                                        .hero-visual {
                                            transition: all 0.3s ease;
                                            padding: 0.75rem;
                                            border-radius: 20px;

                                        }

                                        /* Animated focus effect */
                                        .animated-focus {
                                            animation: focusAnimation 2s ease-in-out;
                                            transform-origin: center;
                                        }

                                        @keyframes focusAnimation {
                                                0% {
                                                    transform: scale(1);
                                                    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
                                                }

                                                25% {
                                                    transform: scale(1.05);
                                                    box-shadow: 0 0 0 10px rgba(74, 144, 226, 0.4);
                                                }

                                                50% {
                                                    transform: scale(1.02);
                                                    box-shadow: 0 0 0 20px rgba(74, 144, 226, 0.2);
                                                }

                                                75% {
                                                    transform: scale(1.01);
                                                    box-shadow: 0 0 0 15px rgba(74, 144, 226, 0.1);
                                                }

                                                100% {
                                                    transform: scale(1);
                                                    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
                                                }
                                            }


                                            /* Alternative: Glow effect */
                                            .animated-focus {
                                                animation: glowEffect 2s ease-in-out;
                                            }

                                            @keyframes glowEffect {

                                                    0%,
                                                    100% {
                                                        box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
                                                    }

                                                    50% {
                                                        box-shadow: 0 0 30px rgba(74, 144, 226, 0.8),
                                                            0 0 60px rgba(74, 144, 226, 0.4);
                                                    }
                                                }
                                            