/* global.css */

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

body {
  background: #f9fafb;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #111827;
}

.section-center {
  margin: 0 auto;
  margin-top: 5rem;
  max-width: 40rem; 
  background: #fff;
  border-radius: 0.75rem; 
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); 
}
