/* Page styles for E-E-A-T legal pages */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #2c2c2c;
  background: #fafafa;
}

a { color: #1e73be; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header — same as homepage */
.page-header {
  background: #303030;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.page-header .logo { display: inline-block; }
.page-header .logo img { height: 56px; width: auto; display: block; }
.page-header .cta-group { display: flex; gap: 10px; }
.page-header .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: opacity .15s ease;
}
.page-header .btn:hover { opacity: 0.85; }
.page-header .btn-connexion { background: #ffce3d; color: #1a1d2e; }
.page-header .btn-joindre   { background: #5d2eff; color: #fff; }

/* Main content */
.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 30px 80px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  margin-top: 32px;
  margin-bottom: 48px;
  border-radius: 8px;
}
.page-main h1 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #1a1d2e;
  font-weight: 700;
}
.page-main h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 40px 0 14px;
  color: #1a1d2e;
  font-weight: 700;
}
.page-main h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 28px 0 10px;
  color: #1a1d2e;
  font-weight: 600;
}
.page-main p { margin-bottom: 16px; }
.page-main ul, .page-main ol { margin: 0 0 18px 28px; }
.page-main li { margin-bottom: 8px; }
.page-main strong { font-weight: 600; }
.page-main .meta-update {
  display: inline-block;
  background: #eef3fa;
  color: #1a4d80;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 24px;
}
.page-main .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 28px;
}

/* Tables */
.page-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}
.page-main th, .page-main td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.page-main th { background: #f6f7fa; font-weight: 600; }

/* Contact form */
.contact-form { margin: 24px 0; padding: 24px; background: #f8f9fb; border-radius: 8px; }
.contact-form label { display: block; font-weight: 600; margin: 14px 0 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #ccc; border-radius: 4px;
  font-family: inherit; font-size: 15px; background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  margin-top: 18px; padding: 13px 32px; background: #5d2eff; color: #fff;
  border: none; border-radius: 26px; font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
}
.contact-form button:hover { background: #4a24cc; }
.contact-form .form-note { font-size: 13px; color: #666; margin-top: 10px; }

/* Footer — full E-E-A-T grid */
.site-footer {
  background: #1a1d2e;
  color: #c8c8d0;
  padding: 50px 30px 24px;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #c8c8d0; font-size: 14px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid #2c2f44;
  font-size: 13px; color: #888a9c; text-align: center;
}
.footer-bottom p { margin-bottom: 6px; }
.footer-bottom .age-badge {
  display: inline-block; width: 28px; height: 28px;
  background: #d63031; color: #fff; font-weight: 800;
  border-radius: 50%; line-height: 28px; font-size: 13px;
  margin-right: 8px; vertical-align: middle;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #5d2eff; color: #fff;
  padding: 12px 20px; z-index: 100;
}
.skip-link:focus { left: 0; }

@media (max-width: 700px) {
  .page-header { padding: 14px 16px; }
  .page-header .logo img { height: 44px; }
  .page-header .btn { padding: 9px 18px; font-size: 13px; }
  .page-main { padding: 30px 18px 50px; margin-top: 16px; border-radius: 0; }
  .page-main h1 { font-size: 26px; }
  .page-main h2 { font-size: 21px; }
  .page-main h3 { font-size: 17px; }
  .site-footer { padding: 40px 18px 20px; }
}
