:root {
  --primary: #1e4487;
  --primary-light: #c5daf1;
  --red-dark: #79170e;
  --orange: #fcd2a8;
  --orange-light: #fff4ea;
  --green-dark: #14470f;
  --green: #dde8a5;
  --green-light: #f5fae3;
  --bg: #f5f8ff;
  --white: #ffffff;
  --font-main: 'Inter', 'Inter Local', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Playful Monalisa Sans', 'Inter', 'Inter Local', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--primary);
  -webkit-font-smoothing: antialiased;
}

button,
a,
[role="button"],
input,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
input:focus:not(:focus-visible),
label:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}

.container {
  max-width: 390px;
  margin: 0 auto;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

* {
  box-sizing: border-box;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-large {
  height: 64px;
  padding: 0 32px;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-dark-red {
  background-color: var(--red-dark);
  color: var(--white);
}

.btn-dark-green {
  background-color: var(--green-dark);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: none;
}

.w-100 {
  width: 100%;
}

.icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn-solid {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bg-light-blue { background-color: var(--primary-light) !important; }
