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

:root {
  --text-dark: #1a1a1a;
  --text-medium: #4a5568;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.privacy-page {
  background-color: #FAFBFC;
  min-height: 100vh;
  padding: 4rem 0;
}

.privacy-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-header h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.privacy-header p {
  color: var(--text-medium);
  font-size: 1rem;
}

.privacy-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #FFE5D9;
  font-weight: 700;
}

.privacy-section h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.privacy-section p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
  color: var(--text-medium);
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.privacy-section a {
  color: #FF8C61;
  text-decoration: none;
  font-weight: 600;
}

.privacy-section a:hover {
  text-decoration: underline;
}

.privacy-contact-box {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFE5D9 50%);
  border-left: 4px solid #FF8C61;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.privacy-contact-box h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.privacy-contact-box p {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.privacy-contact-box a {
  color: #FF8C61;
  text-decoration: none;
  font-weight: 600;
}

.privacy-contact-box a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FF8C61;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  gap: 0.75rem;
}

.back-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.cookie-settings-box {
  background: #F8F9FA;
  border: 2px solid #FFE5D9;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.cookie-settings-box h3 {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cookie-option {
  background: #FFFFFF;
  border: 1px solid #E8EBED;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF8C61;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-option-content {
  flex: 1;
}

.cookie-option-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-option-content p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.cookie-option-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.cookie-save-btn {
  background: #FF8C61;
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cookie-save-btn:hover {
  background: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 97, 0.3);
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 2rem 0;
  }

  .privacy-content {
    padding: 2rem 1.5rem;
  }

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

  .cookie-settings-box {
    padding: 1.5rem;
  }
}
