* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.header {
  background-color: #4287ed;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.logo {
  color: #efb12b;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

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

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f3c22e;
}

.hero {
  background-color: #f3c22e;
  color: #535353;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
}

.hero-text h2{
  font-size: 48px;
  font-weight: 900;
  color: #4b4b4b;
}

.hero-text p {
  font-size: 18px;
  color: #4b4b4b;
  margin: 20px 0;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.hero button {
  background-color: #4287ed;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}

.info-section {
  padding: 50px 100px;
  text-align: center;
}

.info-section h3 {
  font-size: 36px;
  font-weight: 900;
  color:#4b4b4b;
  margin-bottom: 40px;
}

.info-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  text-align: center;
  width: 150px;
}

.card img{
  width: 100%;
  height: 150px;
  border: 2px solid #535353;
  border-radius: 12px;
  object-fit: cover;
}

.card p {
  margin-top: 10px;
  font-size: 14px;
  color:#4b4b4b;
}

.quote {
  background-color: #4287ed;
  padding: 100px 50px;
  font-size: 36px;
  font-style: italic;
  font-weight: 100;
  color:#FFFFFF;
}

.quote cite {
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}

.cta {
  background-color:#efb12b;
  padding: 50px 100px;
  border-radius: 10px;
  color:#FFFFFF;
  margin: 50px 100px;
}

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

.cta-text h4 {
  font-weight: 900;
  font-size: 24px;
  margin: 0;
}

.cta-text p {
  font-size: 16px;
  color:#FFFFFF;
  margin-top: 10px;
}

.cta button {
  background-color: #FFFFFF;
  color:#4b4b4b;
  border: 2px solid #4b4b4b;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

footer {
  background-color:#4287ed;
  color:#FFFFFF;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}