/* =============================================
   BASE — Variables, Reset, Typography, Layout
   ============================================= */

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

:root {
  --accent:   #0C447C;
  --accent2:  #185FA5;
  --light:    #E6F1FB;
  --light2:   #B5D4F4;
  --warm:     #F4F3F0;
  --white:    #ffffff;
  --muted:    #5F5E5A;
  --text:     #1a1a1a;
  --text-sub: #444441;
  --border:   rgba(12, 68, 124, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm);
  color: var(--text);
  line-height: 1.6;
}

/* Layout wrapper */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

/* Section label */
.sec-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light2);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0 0;
  font-size: 12px;
  color: var(--muted);
}
