/* Policy-hero background — lo maneja .hero-page en styles.css */

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.policy-section h2 {
    color: #005B9F;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #E58E21;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.policy-section h2:hover {
    color: #E58E21;
    border-bottom-color: #005B9F;
}

.policy-section h3 {
    color: #003d6b;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-section p {
    color: #333;
    margin-bottom: 12px;
    text-align: justify;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section li::marker {
    color: #E58E21;
    font-weight: bold;
}

.policy-section strong {
    color: #005B9F;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-hero {
        padding: 40px 15px;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-hero p {
        font-size: 1rem;
    }

    .policy-content {
        margin: 30px auto;
        padding: 15px;
    }

    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .policy-section p {
        text-align: left;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.5rem;
    }

    .policy-hero p {
        font-size: 0.9rem;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }

    .policy-content {
        padding: 10px;
    }
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




