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

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

.hero {
  background-color: #1F2937;
  padding: 20px 200px 120px;
  color: #F9FAF8;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: #E5E7EB;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  width: 450px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  color: #E5E7EB;
  margin-bottom: 20px;
}

.hero-text button {
  background-color: #3882F6;
  border: none;
  color: white;
  padding: 8px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}

.hero-image {
  width: 500px;
  height: 230px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.info {
  padding: 60px 200px 100px;
  text-align: center;
}

.info h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1F2937;
  margin-bottom: 50px;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  width: 160px;
}

.box {
  width: 160px;
  height: 160px;
  border: 4px solid #3882F6;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #4B5563;
}

.quote {
  background-color: #E5E7EB;
  padding: 120px 300px;
}

.quote-text {
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: #1F2937;
}

.quote-author {
  text-align: right;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

.cta {
  padding: 100px 200px;
}

.cta-box {
  background-color: #3882F6;
  padding: 50px 80px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.cta-box h3 {
  font-size: 24px;
}

.cta-box p {
  font-size: 16px;
  color: #E5E7EB;
}

.cta-button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}

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