* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  text-align: center;
}

.nav-bar {
  display: flex;
  color: #f0f0f0;
  background-color: #1f2937;
  padding: 20px 0px 20px 100px;
  align-items: center;
}

.link-list {
  display: flex;
  justify-content: space-evenly;
  margin-left: auto;
  padding: 0px 100px 0px 0px;
}

.link-list a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 18px;
  padding: 0px 10px 0px 10px;
}

.link-list a:hover {
  color: #ffffff71;
}

.header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 80px; /* Adjust the max height of the logo as needed */
  margin-bottom: 5%;
  padding-top: 30px;
}

.hero-text {
  display: flex;
  color: #f0f0f0;
  background-color: #1f2937;
  align-items: center;
  justify-content: center;
  padding: 90px;
}

.hero-1-items {
  flex-basis: 600px;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-right: 50px;
  justify-content: space-between;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  color: #f9faf8;
}

.hero-1-items button {
  display: block;
  text-align: center;
  width: 110px;
  border: none;
  background: #3882f6;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-family: "Roboto", arial;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.hero-1-items button:hover {
  background-color: #69a2fd;
  transform: scale(1, 1.05);
}

.content {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 150px;
}

.content h2 {
  margin: 35px;
  font-weight: 600;
}

.content-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.content-info img:hover {
  color: #c200005c;
}

.content-info img {
  margin-left: 38px;
  border-radius: 25px;
  border: 4px solid #3882f6;
  width: 190px;
  height: 215px;
}

.content-info p {
  margin-left: 35px;
  color: #6a6a6a;
}

.quote {
  background-color: #e5e7eb;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quote p {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 80px;
}

.quote b {
  margin-left: auto;
  margin-right: 8%;
  font-size: 18px;
}

.call-to-action {
  background-color: #3882f6;
  margin: 5% 10%; /* Adjust the percentage values as needed */
  padding: 60px 80px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  color: #f0f0f0;
}

.cta-items {
  flex: 1;
  text-align: left;
  margin-left: 50px;
}

.cta-button {
  flex: 1;
}

.cta-button a {
  width: 145px;
  border: 2px solid #f0f0f0;
  color: #f0f0f0;
  padding: 8px 28px 8px 28px;
  border-radius: 10px;
  background-color: #3882f6;
  text-decoration: none;
  font-weight: 700;
}

.cta-button a:hover {
  background-color: rgba(164, 164, 164, 0.3);
  transform: scale(1, 1.05);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  background-color: #1f2937;
  height: 100px;
  font-size: 18px;
}
