:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
  --gradient-privacy: linear-gradient(135deg, #0891b2, #06b6d4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 85px;
}

.brand-logo img {
  height: 50px;
  width: auto;
}

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}

.dropdown-container:hover .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-container:hover .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

/* Privacy Hero Section */
.privacy-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker-navy) 0%, #1a1f36 50%, var(--deep-navy) 100%);
  position: relative;
  padding: 8rem 0 4rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-privacy);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-secure {
  display: block;
  background: var(--gradient-privacy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.privacy-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.highlight-icon {
  font-size: 1.2rem;
  color: var(--success-green);
}

.highlight-text {
  color: var(--light-text);
  font-weight: 500;
}

.policy-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.meta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
}

/* Privacy Summary */
.privacy-summary {
  padding: 4rem 0;
  background: var(--darker-navy);
}

.privacy-summary h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-privacy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-intro {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.summary-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.summary-card h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.summary-card p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Privacy Content */
.privacy-content {
  padding: 4rem 0;
  background: var(--deep-navy);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.privacy-main {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.privacy-section h2 {
  color: var(--light-text);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-orange);
}

.section-content {
  color: var(--muted-text);
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 1.5rem;
}

.section-content h3 {
  color: var(--light-text);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.section-content h4 {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.data-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-orange);
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.data-list li {
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.data-list li::before {
  content: '•';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.collection-notice {
  background: rgba(8, 145, 178, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.collection-notice h4 {
  color: #0891b2;
  margin-bottom: 0.75rem;
}

.collection-notice p {
  color: var(--light-text);
  margin-bottom: 0;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.usage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.usage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.usage-card h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.usage-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.usage-card li {
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
}

.usage-card li::before {
  content: '✓';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.legal-basis {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.legal-list li::before {
  content: '⚖️';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.sharing-category {
  margin: 2rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.partner-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid var(--success-green);
}

.partner-item strong {
  color: var(--light-text);
  display: block;
  margin-bottom: 0.5rem;
}

.partner-item p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.legal-sharing {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.business-notice {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.business-notice p {
  color: var(--light-text);
  margin-bottom: 0;
}

.no-sale-notice {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.no-sale-notice h4 {
  color: var(--success-green);
  margin-bottom: 0.75rem;
}

.no-sale-notice p {
  color: var(--light-text);
  margin-bottom: 0;
}

.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-layer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.security-layer:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.security-layer h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.security-layer p {
  color: var(--muted-text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.incident-response {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.incident-response h3 {
  color: #ef4444;
  margin-bottom: 1rem;
}

.response-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  counter-reset: response-counter;
}

.response-steps li {
  counter-increment: response-counter;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--light-text);
}

.response-steps li::before {
  content: counter(response-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #ef4444;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.right-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.right-card h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.right-card p {
  color: var(--muted-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.right-action {
  background: var(--gradient-privacy);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.right-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.rights-exercise {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.exercise-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  counter-reset: exercise-counter;
}

.exercise-steps li {
  counter-increment: exercise-counter;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--light-text);
}

.exercise-steps li::before {
  content: counter(exercise-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient-privacy);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.rights-limitations {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.rights-limitations h4 {
  color: var(--warning-amber);
  margin-bottom: 0.75rem;
}

.rights-limitations ul {
  list-style: none;
  padding: 0;
}

.rights-limitations li {
  color: var(--light-text);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.rights-limitations li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.cookie-category:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.cookie-category h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.cookie-category p {
  color: var(--muted-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-examples span {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.cookie-control {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.control-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.control-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.control-list li::before {
  content: '⚙️';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.cookie-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.cookie-warning p {
  color: var(--light-text);
  margin-bottom: 0;
}

.retention-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.retention-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.retention-item:hover {
  transform: translateX(5px);
  border-color: var(--success-green);
}

.retention-item h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.retention-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.retention-period {
  background: var(--gradient-privacy);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.retention-reason {
  color: var(--muted-text);
  font-size: 0.9rem;
  flex: 1;
  text-align: right;
}

.retention-principles {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.principles-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.principles-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.principles-list li::before {
  content: '📋';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.transfer-safeguards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.safeguard-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.safeguard-item:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.safeguard-item h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.safeguard-item p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.transfer-locations {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.locations-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.locations-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.locations-list li::before {
  content: '🌍';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.age-restriction {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.age-restriction h3 {
  color: #ef4444;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.age-restriction p {
  color: var(--light-text);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.protection-measures {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.protection-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.protection-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.protection-list li::before {
  content: '🛡️';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.parental-notice {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.parental-notice h3 {
  color: var(--success-green);
  margin-bottom: 1rem;
}

.parental-notice p {
  color: var(--light-text);
  margin-bottom: 0;
}

.update-process {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.update-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  counter-reset: update-counter;
}

.update-steps li {
  counter-increment: update-counter;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--light-text);
}

.update-steps li::before {
  content: counter(update-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient-privacy);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.notification-methods {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.notification-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.notification-list li {
  color: var(--muted-text);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.notification-list li::before {
  content: '📢';
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.version-history {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.version-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-item:last-child {
  border-bottom: none;
}

.version-date {
  color: var(--success-green);
  font-weight: 600;
  min-width: 150px;
}

.version-changes {
  color: var(--muted-text);
  font-size: 0.9rem;
  flex: 1;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: var(--accent-orange);
}

.contact-method h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.contact-method p {
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--bright-blue);
}

/* Sidebar */
.privacy-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-sticky {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.quick-nav h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  margin-bottom: 2rem;
}

.nav-links li {
  margin-bottom: 0.75rem;
}

.nav-links a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-left: 2px solid transparent;
  padding-left: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-orange);
  border-left-color: var(--accent-orange);
}

.privacy-tools {
  background: rgba(8, 145, 178, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.privacy-tools h4 {
  color: #0891b2;
  margin-bottom: 0.75rem;
}

.privacy-tools p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.privacy-btn {
  background: var(--gradient-privacy);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.privacy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.help-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.help-box h4 {
  color: var(--success-green);
  margin-bottom: 0.75rem;
}

.help-box p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.help-btn {
  background: var(--gradient-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-text);
}

.footer-bottom .legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .dropdown-container:hover .submenu-list,
  .dropdown-container.active .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .title-secure {
    font-size: 2rem;
  }

  .privacy-highlights {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .policy-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .privacy-main {
    padding: 2rem;
  }

  .usage-grid,
  .partners-grid,
  .security-measures,
  .rights-grid,
  .cookie-types,
  .transfer-safeguards,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .retention-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .retention-reason {
    text-align: left;
  }

  .version-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
.button {
        padding: 0.55rem 0.55rem;
        font-size: 0.8rem;
    }
  .privacy-hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .title-secure {
    font-size: 1.5rem;
  }

  .privacy-main {
    padding: 1.5rem;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .payment-icons img {
    max-width: 35px;
  }
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}
