/* Legal/Static pages — terms, privacy, refund, contact */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f9fa;
  color: #1a2e38;
  line-height: 1.6;
}

.legal-hdr {
  background: #fff;
  padding: 16px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-link {
  font-weight: 800;
  font-size: 18px;
  color: #1a2e38;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo-link:hover { color: #1aaba0; }

.legal-hdr nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-left: auto;
}
.legal-hdr nav a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: .2s;
}
.legal-hdr nav a:hover {
  background: #f0f8f7;
  color: #1a6e8a;
}
.legal-hdr nav a.active {
  background: linear-gradient(135deg, #1a6e8a, #1aaba0);
  color: #fff;
}

.legal-content {
  max-width: 820px;
  margin: 40px auto;
  padding: 36px 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(20,40,80,.06);
}

.legal-content h1 {
  font-size: 28px;
  color: #1a6e8a;
  margin-bottom: 6px;
}
.legal-content h2 {
  font-size: 19px;
  color: #1a3540;
  margin-top: 28px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f0f3f5;
}
.legal-content h3 {
  font-size: 15px;
  color: #1a3540;
  margin-bottom: 6px;
}
.legal-content p {
  margin-bottom: 12px;
  color: #444;
  font-size: 14px;
}
.legal-content ul, .legal-content ol {
  margin-left: 22px;
  margin-bottom: 14px;
}
.legal-content li {
  margin-bottom: 6px;
  color: #444;
  font-size: 14px;
}
.legal-content a {
  color: #1a6e8a;
  text-decoration: none;
  font-weight: 600;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content .updated {
  color: #888;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 24px;
}
.legal-content strong { color: #1a3540; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.contact-card {
  background: linear-gradient(135deg, #f5f9fa, #e8f4f4);
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e0e6ea;
}
.contact-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #1a3540;
}
.contact-card p {
  font-size: 13px;
  margin-bottom: 4px;
}
.contact-card .muted {
  color: #888;
  font-size: 11px;
}

/* Form */
.legal-content form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-top: 14px;
  margin-bottom: 6px;
}
.legal-content form input,
.legal-content form select,
.legal-content form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.legal-content form input:focus,
.legal-content form select:focus,
.legal-content form textarea:focus {
  border-color: #1a9eab;
}
.btn-submit {
  background: linear-gradient(135deg, #1a6e8a, #1aaba0);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 18px;
}
.btn-submit:hover { filter: brightness(1.07); }
.err {
  background: #fde8e8;
  color: #b00020;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 14px;
}

/* FAQ accordion */
.faq {
  background: #f5f9fa;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq summary {
  font-weight: 700;
  color: #1a3540;
  font-size: 14px;
  outline: none;
}
.faq p {
  margin-top: 8px;
  color: #555;
  font-size: 13px;
}
.faq[open] {
  background: linear-gradient(135deg, #f0f8f7, #e8f4f4);
}

.legal-footer {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 30px 20px;
  margin-top: 20px;
}

@media (max-width: 640px) {
  .legal-content { margin: 20px 12px; padding: 24px 18px; }
  .legal-hdr { padding: 12px 16px; gap: 12px; }
  .legal-hdr nav { gap: 10px; width: 100%; margin-left: 0; }
  .legal-hdr nav a { font-size: 12px; padding: 5px 8px; }
  .legal-content h1 { font-size: 22px; }
  .legal-content h2 { font-size: 17px; }
}
