:root {
  --app-blue: #1b3799;
  --app-yellow: #f6c445;
  --app-red: #da2c38;
  --app-text: #333333;
  --app-text-light: #666666;
  --app-bg: #f5f7fa;
  --app-card-border: #e2e8f0;
}

body {
  background: var(--app-bg) !important;
  margin: 0;
  font-family: "Inter", "Roboto", "Segoe UI", sans-serif;
  color: var(--app-text);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.privacy-page {
  min-height: 100vh;
  position: relative;
}

.privacy-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 60px;
}

.app-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.app-logo-container img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.privacy-header {
  text-align: center;
  margin-bottom: 25px;
}

.privacy-title {
  color: var(--app-blue);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.privacy-lead {
  color: var(--app-text-light);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.privacy-card {
  background: #ffffff;
  border: 1px solid var(--app-card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.privacy-section {
  margin-bottom: 35px;
}

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

.privacy-section h2 {
  color: var(--app-blue);
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.privacy-section p {
  color: var(--app-text);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 15px;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.privacy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--app-text);
  font-size: 15px;
  line-height: 1.6;
}

.privacy-list li::before {
  content: "•";
  color: var(--app-red);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: bold;
}

.privacy-contact {
  background: rgba(27, 55, 153, 0.04);
  border: 1px solid rgba(27, 55, 153, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
}

.privacy-contact p {
  margin-bottom: 8px;
}

.privacy-contact strong {
  color: var(--app-blue);
}

@media (max-width: 768px) {
  .privacy-shell {
    padding-top: 40px;
  }
  .privacy-title {
    font-size: 26px;
  }
  .app-logo-container img {
    width: 120px;
  }
  .privacy-card {
    padding: 24px;
    border-radius: 20px;
  }
  .privacy-section h2 {
    font-size: 18px;
  }
}
