.policy-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #c52424 0%, #be4d4d 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

       
        .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(220,20,60,0.15) 25%, transparent 25%), 
                        linear-gradient(-45deg, rgba(139,0,0,0.2) 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, rgba(220,20,60,0.15) 75%), 
                        linear-gradient(-45deg, transparent 75%, rgba(139,0,0,0.2) 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            opacity: 0.4;
            z-index: 1;
        }

        .policy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .policy-header {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 15px 15px 0 0;
            padding: 1.5rem;
            text-align: center;
            font-weight: bold;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .policy-body {
            padding: 2rem;
            text-align: center;
        }

        .policy-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.95;
        }

        .modern-btn {
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            border: none;
            border-radius: 50px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            position: relative;
            overflow: hidden;
        }

        .modern-btn::before {
            content: '';
            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.5s;
        }

        .modern-btn:hover::before {
            left: 100%;
        }

        .modern-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
            color: white;
            text-decoration: none;
        }

        .modern-btn:active {
            transform: translateY(0);
        }

        .btn-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .modern-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* Variante alternativa con glassmorphism */
        .glass-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        .glass-header {
            background: rgba(255, 255, 255, 0.1);
            color: #2c3e50;
            font-weight: bold;
        }

        .glass-body {
            color: #2c3e50;
        }

        .pulse-btn {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
            }
        }

        .icon-container {
            display: inline-block;
            padding: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-bottom: 1rem;
        }


h1, h4 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: #e74c3c;
    padding: 15px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

 .servicios {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
            border: 2px solid #681907;
            border-radius: 10px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .servicio {
            background: white;
            border: 2px solid #c51f1f;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .servicio::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(197, 31, 31, 0.1), transparent);
            transition: left 0.5s;
        }

        .servicio:hover::before {
            left: 100%;
        }

        .servicio:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(197, 31, 31, 0.2);
            border-color: #681907;
        }

        .servicio h2 {
            color: #681907;
            font-size: 1.4rem;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
        }

        .servicio img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .servicio:hover img {
            transform: scale(1.05);
        }

        .servicio p {
            color: #444;
            line-height: 1.6;
            text-align: justify;
            margin-bottom: 0;
        }

        /* Versión Bootstrap Grid */
        .bootstrap-version {
            margin-top: 50px;
            padding: 30px;
            border: 2px solid #681907;
            border-radius: 15px;
            background: white;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e0e0e0;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(197, 31, 31, 0.15);
            border-color: #c51f1f;
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            text-align: center;
        }

        .service-title {
            color: #681907;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .service-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .service-text {
            color: #555;
            line-height: 1.6;
            text-align: justify;
        }

/* Responsive: En pantallas pequeñas las tarjetas se apilan */
@media (max-width: 768px) {
    .servicio {
        width: 100%;
    }
}

h2 {
    color: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(234, 10, 10, 0.1);
    padding: 20px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(237, 5, 5, 0.05);
}

.styled-table thead tr {
    background-color: #ed0d0d;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #2c3e50;
}

.styled-table tbody tr:hover {
    background-color: #e1f5fe;
}

.table-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.table-image:hover {
    transform: scale(1.05);
}

.description {
    font-size: 0.85em;
    color: #000000;
}


@media (max-width: 1024px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 15px;
        margin: 0 10px;
    }
    
    header {
        padding: 8px 0;
    }
    
    h1, h3 {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .servicios {
        justify-content: center;
        margin-top: 15px;
    }
    
    .servicio {
        width: 45%;
        margin: 8px;
        padding: 15px;
    }
    
    .styled-table {
        font-size: 0.8em;
        min-width: 300px;
        margin: 20px 0;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 10px 12px;
    }
    
    .table-image {
        width: 100px;
        height: 65px;
    }
    
    .description {
        font-size: 0.8em;
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
        margin: 0 5px;
        border-radius: 5px;
    }
    
    header {
        padding: 6px 0;
    }
    
    h1, h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .servicios {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        border: none;
    }
    
    .servicio {
        width: 100%;
        max-width: 400px;
        margin: 5px 0;
        padding: 12px;
    }
    
    .styled-table {
        font-size: 0.7em;
        min-width: 250px;
        margin: 15px 0;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 8px 10px;
    }
    
    .table-image {
        width: 80px;
        height: 50px;
    }
    
    .description {
        font-size: 0.75em;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    body {
        padding: 8px;
    }
    
    .container {
        padding: 8px;
        margin: 0;
        border-radius: 3px;
    }
    
    header {
        padding: 5px 0;
    }
    
    h1, h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    .servicios {
        margin-top: 8px;
    }
    
    .servicio {
        width: 100%;
        margin: 3px 0;
        padding: 10px;
    }
    
    .styled-table {
        font-size: 0.6em;
        min-width: 200px;
        margin: 12px 0;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 6px 8px;
    }
    
    .table-image {
        width: 60px;
        height: 40px;
    }
    
    .description {
        font-size: 0.7em;
    }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    body {
        padding: 25px;
    }
    
    .container {
        max-width: 1400px;
        padding: 25px;
    }
    
    header {
        padding: 12px 0;
    }
    
    h1, h3 {
        font-size: 34px;
        margin-bottom: 12px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .servicios {
        margin-top: 25px;
    }
    
    .servicio {
        width: 28%;
        margin: 12px;
        padding: 25px;
    }
    
    .styled-table {
        font-size: 1em;
        min-width: 500px;
        margin: 30px 0;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 15px 18px;
    }
    
    .table-image {
        width: 140px;
        height: 90px;
    }
    
    .description {
        font-size: 0.9em;
    }
}

/* Extra responsive adjustments for very small screens */
@media (max-width: 360px) {
    body {
        padding: 5px;
    }
    
    .container {
        padding: 5px;
    }
    
    h1, h3 {
        font-size: 16px;
    }
    
    h2 {
        font-size: 14px;
    }
    
    .servicio {
        padding: 8px;
    }
    
    .styled-table {
        font-size: 0.55em;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 4px 6px;
    }
    
    .table-image {
        width: 50px;
        height: 35px;
    }
}