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

body {
  font-family: "Roboto", sans-serif;
}

.header {
  background-color: #1F2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12%;
  text-align: center;
}

.header-logo {
  font-size: 24px;
  font-weight: 500;
  color: #f9faf8;
  margin: 0;
}

.header-links ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

a {
  text-decoration: none;
  font-size: 18px;
  color: #e5e7eb;
  font-weight: 100;
}


.section-one {
  background-color: #1F2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: 150px 12%;
}

.section-one .left {
  flex: 1;
  max-width: 500px;
  /* height: 225px; */
}

.section-one .heading {
  font-size: 48px;
  color: #F9FAF8;
  margin-bottom: 8px;
}

.section-one p {
  font-size: 18px;
  color: #E5E7EB;
  font-weight: 300;
}

.section-one button {
  background-color: #3882F6;
  padding: 8px 32px;
  color: #F9FAF8;
  font-weight: 500;
  font-size: 18px;
  border-width: 0;
  border-radius: 8px;
  margin: 16px 0;
}

.section-one .right {
  background-color: grey;
  flex: 1;
  max-width: 500px;
  height: 225px;
  color: #E5E7EB;
  font-size: 18px;
  font-weight: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.section-two {
  background-color: #f9faf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 12%;
}

.section-two .heading {
  margin: 64px 0;
  font-size: 36px;
  font-weight: 900;
  color: #1F2937;
  text-align: center;
}

.info-grid {
  display: flex;
  margin-bottom: 100px;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.illustration {
  border: #3882F6 solid 5px;
  border-radius: 20px;
  width: 15vw;
  height: 15vw;
}

.info-grid p {
  text-align: center;
  justify-self: flex-end;
  margin: 8px;
  width: 15vw;
  color: rgb(115, 115, 115);
  font-size: 18px;
}


.section-three {
  background-color: #E5E7EB;
  padding: 100px 23%;
}

.quote {
  font-size: 36px;
  font-weight: 200;
  font-style: italic;
  color: #1F2937;
  margin-bottom: 8px;
}

.author {
  font-size: 24px;
  font-weight: bold;
  color: #1F2937;
  text-align: right;
}


.section-four {
  background-color: #f9faf8;
  padding: 100px 10%;
}

.section-four .container {
  background-color: #3882F6;
  padding: 50px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  border-radius: 10px;
}

.section-four h4 {
  color: #F9FAF8;
  font-size: 24px;
  margin-bottom: 6px;
}

.section-four p {
  color: #E5E7EB;
  font-size: 18px;
  font-weight: 300;
}

.section-four button {
  background-color: #3882F6;
  color: #F9FAF8;
  font-size: 18px;
  padding: 8px 36px;
  border: 2px solid #F9FAF8;
  border-radius: 8px;
  /* flex-shrink: 0; */
}


.footer {
  background-color: #1F2937;
  color: #E5E7EB;
  font-size: 18px;
  text-align: center;
  padding: 36px 0;
}