.page-background {
    background-color: #f4f4f4;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-header-card {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-content {
    text-align: center;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.page-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h2 i {
    color: #176d86;
}

.privacy-section h3 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-section h3 i {
    color: #176d86;
}

.privacy-section h4 {
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-section h4 i {
    color: #176d86;
}

.privacy-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    color: #4b5563;
    line-height: 1.8;
    margin-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-section ul li i {
    color: #176d86;
    margin-right: 8px;
    width: 16px;
}

.info-box, .contact-box {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #176d86;
}

.data-category {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.legal-bases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.legal-base {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.retention-table th,
.retention-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.retention-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

.retention-table tr:hover {
    background: #f9fafb;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.right-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.right-card:hover {
    border-color: #176d86;
    box-shadow: 0 8px 24px rgba(23, 109, 134, 0.15);
    transform: translateY(-2px);
}

.right-card h4 {
    margin-bottom: 12px;
}

.right-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.btn-link {
    display: inline-block;
    padding: 8px 16px;
    background: #176d86;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-link:hover {
    background: #104c5c;
    color: white;
    text-decoration: none;
}

.text-muted {
    color: #6b7280 !important;
    font-size: 0.9rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-background {
        padding: 10px;
    }

    .page-header-card {
        padding: 16px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-card {
        padding: 20px;
    }

    .rights-grid,
    .legal-bases {
        grid-template-columns: 1fr;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .retention-table {
        font-size: 0.875rem;
    }
}
