/* 
      .--..--..--..--..--..--.
    .' \  (`._   (_)     _   \
  .'    |  '._)         (_)  |
  \ _.')\      .----..---.   /
  |(_.'  |    /    .-\-.  \  |
  \     0|    |   ( O| O) | o|
   |  _  |  .--.____.'._.-.  |
   \ (_) | o         -` .-`  |
    |    \   |`-._ _ _ _ _\ /
    \    |   |  `. |_||_|   |
    | o  |    \_      \     |     -.   .-.
    |.-.  \     `--..-'   O |     `.`-' .'
  _.'  .' |     `-.-'      /-.__   ' .-'
.' `-.` '.|='=.='=.='=.='=|._/_ `-'.'
`-._  `.  |________/\_____|    `-.'
   .'   ).| '=' '='\/ '=' |
   `._.`  '---------------'
           //___\   //___\
             ||       ||
             ||_.-.   ||_.-.
            (_.--__) (_.--__)
       

 Insert all your glorious CSS styles below! */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

:root {
  blue-dark: #0F2A44;
  blue-primary: #1E5EFF;
  blue-soft: #EAF1FF;
  blue-muted: #AFC6FF;
  white: #FFFFFF;
  text-dark: #0B1B2B;
}

* {
  box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(180deg, var(blue-soft) 0%, #FFFFFF 100%);
color: var(text-dark);
}

.header {
padding: 24px 64px;
display: flex;
justify-content: space-between;
align-items: center;
}


.header a {
text-decoration: none;
}


.logo {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.4rem;
color: var(blue-primary);
}


.nav a {
margin-left: 24px;
text-decoration: none;
color: var(text-dark);
font-weight: 500;
}


.nav a:hover {
color: var(blue-primary);
}

.container {
max-width: 1100px;
margin: 0 auto;
padding: 96px 64px 64px;
}


.container > h1 {
font-family: 'Poppins', sans-serif;
font-size: 3.2rem;
font-weight: 700;
margin-bottom: 16px;
}


.container > h2 {
font-size: 1.2rem;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

legend {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #F4F7FF;
  cursor: pointer;
  font-weight: 500;
}

.radio-option input[type=\"radio\"] {
  accent-color: var(blue-primary);
}

.radio-option:hover {
  background: #EAF1FF;
}
