/* legal.css — Styles for Privacy, Cookie, and Terms pages */

.legal-body {
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.8;
}
.legal-intro {
  font-size: 1.05rem;
  color: #555;
  background: #f5f0eb;
  border-left: 5px solid #8B1A1A;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
  line-height: 1.75;
}
.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1212;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0e8e0;
}
.legal-body h3 {
  font-size: 1rem;
  color: #1a1212;
  font-weight: 700;
  margin: 20px 0 8px;
}
.legal-body p { margin-bottom: 14px; font-size: 0.96rem; }
.legal-body ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-body ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
}
.legal-body a { color: #8B1A1A; }
.legal-body a:hover { text-decoration: underline; }
.legal-contact-box {
  background: #f5f0eb;
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 12px;
  border-left: 5px solid #8B1A1A;
}
.legal-contact-box p { margin: 0; line-height: 2; }

/* Cookie table */
.cookie-table {
  border: 1px solid #e8e0d8;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0 28px;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid #e8e0d8;
  padding: 12px 16px;
  font-size: 0.88rem;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-header {
  background: #1a1212;
  color: #f0e8e0;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cookie-row:nth-child(even) { background: #faf7f4; }
@media (max-width: 600px) {
  .cookie-row { grid-template-columns: 1fr; gap: 4px; }
  .cookie-header span:not(:first-child) { display: none; }
}
