.policy-section {
    margin-top: 9rem;
    padding-top: 3rem;
    background: linear-gradient(135deg, rgba(167, 255, 235, 0.1), rgba(255, 64, 129, 0.1));
}

.policy-section h1 {
    text-align: center;
    color: #9C27B0;
    margin-bottom: 2rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    margin-bottom: 1.5rem;
    color: #9C27B0;
    text-align: center;
    font-size: 2.5rem;
    display: none; /* Ocultar este h1 ya que ahora usamos el h1 en policy-section */
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    color: #FF9800;
    border-bottom: 2px solid rgba(255, 152, 0, 0.2);
    position: relative;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF9800, #9C27B0);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #9C27B0;
    text-align: center;
}

.policy-content p, .policy-content ul, .policy-content ol {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content ul {
    list-style-type: none;
    margin-left: 1rem;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9C27B0;
    font-size: 1.2em;
}

.policy-content a {
    color: #9C27B0;
    text-decoration: none;
    border-bottom: 1px dotted #9C27B0;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: #FF9800;
    border-bottom-color: #FF9800;
}

.policy-content strong {
    color: #555;
    font-weight: 600;
}

/* Estilos para tablas en la página de cookies */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.cookie-table th, .cookie-table td {
    padding: 1rem;
    text-align: left;
}

.cookie-table thead {
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.1), rgba(156, 39, 176, 0.1));
}

.cookie-table th {
    font-weight: 600;
    color: #9C27B0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.cookie-table tr {
    transition: background-color 0.3s ease;
}

.cookie-table tr:hover {
    background-color: rgba(156, 39, 176, 0.05);
}

/* Estilo responsive para dispositivos móviles */
@media screen and (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
} 