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

section.first {
  background-color: #1f2937;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0px;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 100px;
}

.logo {
  color: #f9faf8;
  font-weight: 900;
  font-size: 24px;
}

nav ul {
  color: #e5e7eb;
  font-size: 18px;

  display: flex;
  margin-left: auto;
  gap: 16px;
}

section.first .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 450px;
}

.hero-container h1 {
  color: #f9faf8;
  font-size: 48px;
  font-weight: 900;
}

.hero-container p {
  color: #e5e7eb;
  font-size: 18px;
}

.hero-container button {
  color: #f9faf8;
  background-color: #3882f6;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 32px;
}

section.first img {
  max-width: 50%;
}

section.second {
  padding: 50px 0 100px;
}

section.second > h2 {
  text-align: center;
  color: #1f2937;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 50px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.card {
  width: 175px;
}

.card > img {
  display: block;
  margin-bottom: 8px;
  border: 4px solid #3882f6;
  border-radius: 14px;
  height: 175px;
}

.card > p {
  text-align: center;
  color: #525252;
  font-size: 18px;
}

section.third {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0px;

  background-color: #e5e7eb;
  color: #1f2937;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 800px;
}

blockquote {
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
}

.quote-container > p {
  font-size: 24px;
  font-weight: 600;
}

section.fourth {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0px;
}

section.fourth .container {
  flex: 0 1 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  border-radius: 8px;
  background-color: #3882f6;
}

section.fourth h2 {
  color: #f9faf8;
  font-size: 24px;
  font-weight: 600;
}

section.fourth p {
  color: #f9faf8;
  font-size: 18px;
}

section.fourth button {
  border: 2px solid #f9faf8;
  color: #f9faf8;
  background-color: #3882f6;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 32px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;

  background-color: #1f2937;
  color: #e5e7eb;
  font-size: 18px;
}
