/* =========================================================
   AluminiumGlass
   Refund Policy
   ========================================================= */

.legal-page {
  min-height: 100vh;
  background: #f7f8fa;
  padding: 45px 16px 70px;
}

.legal-container {
  width: min(900px, 100%);
  margin: 0 auto;
}


/* Header */

.legal-header {
  margin-bottom: 25px;
}

.brand-row {
  margin-bottom: 30px;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.legal-header h1 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 34px;
  line-height: 1.2;
}

.legal-header p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}


/* Main Card */

.legal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 30px;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: #111827;
  font-size: 21px;
  line-height: 1.35;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.75;
}

.legal-card ul {
  margin: 8px 0 20px;
  padding-left: 23px;
  color: #4b5563;
}

.legal-card li {
  margin-bottom: 9px;
  line-height: 1.65;
}

.legal-card a {
  color: #2563eb;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}


/* Summary */

.policy-summary {
  margin-bottom: 25px;
  padding: 16px 18px;
  border-left: 4px solid #374151;
  border-radius: 5px;
  background: #f9fafb;
  color: #4b5563;
  line-height: 1.7;
}

.policy-summary strong {
  color: #111827;
}


/* Policy Note */

.policy-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #f9fafb;
  color: #4b5563;
  line-height: 1.7;
}

.policy-note strong {
  color: #111827;
}


/* Footer */

.legal-footer {
  margin-top: 25px;
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 12px;
  padding: 0;
}

.legal-footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.legal-footer-links a:hover {
  color: #111827;
  text-decoration: underline;
}

.legal-footer p {
  margin: 0;
}


/* Mobile */

@media (max-width: 600px) {

  .legal-page {
    padding: 30px 12px 50px;
  }

  .brand-row {
    margin-bottom: 24px;
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-card {
    padding: 21px;
    border-radius: 11px;
  }

  .legal-card h2 {
    font-size: 19px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 14px;
  }

  .policy-summary,
  .policy-note {
    padding: 14px;
  }

}