:root {
  --color-main: #8fb4cc;
  --color-main-dark: #176eaf;
  --color-main-soft: #dde8ef;
  --color-text: #4f362a;
  --color-muted: #666;
  --color-border: #e7edf2;
  --color-bg: #fff;
  --color-blue-bg: #eef7ff;
  --font-logo: "Darumadrop One", "M PLUS Rounded 1c", sans-serif;
  --font-heading: "Mochiy Pop One", "M PLUS Rounded 1c", sans-serif;
  --font-body: "M PLUS Rounded 1c", system-ui, sans-serif;
  --container: 1200px;
  --radius-card: 16px;
  --shadow-soft: 0 12px 30px rgba(36, 78, 113, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 320px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
