/* 
      .--..--..--..--..--..--.
    .' \  (`._   (_)     _   \
  .'    |  '._)         (_)  |
  \ _.')\      .----..---.   /
  |(_.'  |    /    .-\-.  \  |
  \     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, #EAF1FF 0%, #FFFFFF 100%);
  color: var(text-dark);
}

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

.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;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 64px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-button {
  background: var(blue-primary);
  color: var(white);
  border: none;
  padding: 14px 32px;
  border-radius: 999px; 
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.cta-button:hover {
  background: #1648CC;
  color: #FFFFFF; 
}

.hero-image {
  width: 100%;
  height: 360px;
  background: var(blue-soft);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(blue-muted);
  font-weight: 600;
}
.container {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 80px 64px;
}

.box {
  width: 340px;
  height: 460px;
  background: linear-gradient(160deg, #1E5EFF, #4F7DFF);
  color: var(white);
  padding: 28px;
  border-radius: 40px; 
  box-shadow: 0 20px 40px rgba(30,94,255,0.25);
  display: flex;
  flex-direction: column;
}

.box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 20px;
}

.box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.box p {
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-y: auto;
}

.footer-cta {
  background: var(blue-dark);
  color: var(white);
  padding: 64px;
  text-align: center;
}

.footer-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer-cta button {
  margin-top: 16px;
}
