@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  font-family: Roboto;
  min-height: 100vh;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

header,
footer {
  background-color: #1f2937;
}

.container {
  display: flex;
  gap: 72px;
  padding-top: 32px;
  padding-bottom: 72px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar p {
  color: #f9faf8;
  font-size: 24px;
  font-weight: bold;
}

ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 24px;
}

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

.hero {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 72px;
}

.hero-text {
  max-width: 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.hero-text h1 {
  margin: 0;
  padding: 0;
  font-size: 48px;
  color: #f9faf8;
  font-weight: 900;
}

.hero-text p {
  text-wrap: pretty;
  font-size: 18px;
  color: #e5e7eb;
}

button {
  background-color: #3882f6;
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding: 12px 32px;
  border-radius: 12px;
}

.hero-image {
  max-width: 512px;
  display: flex;
}

img {
  width: 100%;
  height: 100%;
}

.information .container {
  gap: 60px;
  padding-top: 32px;
  padding-bottom: 72px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.information h2 {
  font-size: 36px;
  color: #1f2937;
  font-weight: 900;
}

.item {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.info {
  max-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-image {
  display: flex;
  border: 4px solid #3882f6;
  border-radius: 12px;
  overflow: hidden;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-text {
  font-size: 18px;
  color: #1f2937;
}

.quote {
  background-color: #e5e7eb;
}

.quote .container {
  padding-top: 72px;
  padding-bottom: 72px;
  max-width: 780px;
}

.quote h1 {
  font-size: 36px;
  color: #1f2937;
  font-weight: 300;
  font-style: italic;
  align-self: center;
}

.quote p {
  font-size: 24px;
  font-weight: bold;
  align-self: flex-end;
}

.cta .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.banner {
  background-color: #3882f6;
  padding: 48px 72px;
  border-radius: 12px;
  display: flex;
}

.banner-text {
  flex-grow: 1;
}

.banner-text h2 {
  color: #f9faf8;
}

.banner-text p {
  color: #e5e7eb;
}

.banner-button {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.banner-button button {
  color: #f9faf8;
  border: 2px solid #f9faf8;
}

footer .container {
  padding-top: 32px;
  padding-bottom: 32px;
}

footer p {
  color: #f9faf8;
  text-align: center;
}
