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

@font-face {
  font-family: 'Inter';
  src: url('/inter/Inter-Medium.otf') format('otf');
  font-weight: 400;
}

/* Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 
               'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: aliceblue;
    color: #111;
    line-height: 1.7;
    padding: 80px 24px;
}

/* Layout */
.wrapper {
    max-width: 680px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
}

/* Section spacing */
section {
    margin-bottom: 70px;
}

/* Footer */
footer {
    font-size: 13px;
    color: #666;
    margin-top: 60px;
}