@charset "utf-8";
/* CSS Document */

/*-ios fixes-*/
html,
body {
  -webkit-text-size-adjust: 100%;
}

/*fixes*/
body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  font-size: 14px;
}

a {
  text-decoration: none;
}
p {
  margin: 0;
}
/* HERO SECTION */

header {
  background: #1f1f1f;
  padding: 20px;
}
header img {
  display: block;
  margin: auto;
}
.hero {
  background: #232323;
  color: white;
  padding: 90px 0 0 0;
  position: relative;
}

.hero h1 {
  font-weight: 700;
}

.hero span {
  color: #4e8df5;
  display: block;
}

.hero-img {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.apply-btn {
  background: #4e8df5;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
}
.apply-btn2 {
  background: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  color: #4e8df5;
  font-size: 15px;
  font-weight: 500;
}

/* CONTACT BOX */

.contact-box {
  background: #e2e2e2;
  border-radius: 15px;
  padding: 20px;
  min-height: 120px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: -40px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-box .contact-icon {
  height: 100%;
}
.contact-box .contact-txt {
  text-align: left;
}

.contact-box i {
  font-size: 22px;
  color: #232323;
  padding-right: 20px;
}

/* WELCOME */

.welcome {
  padding: 80px 0 0 0;
  background: white;
}

.welcome h2 {
  font-size: 2rem;
  font-weight: 700;
}
.welcome p {
  width: 90%;
  font-size: 18px;
  text-align: center;
  margin: auto;
}
.welcome img {
  border-radius: 20px;
}

/* BLUE SECTION */

.why {
  background: #4e8df5;
  color: white;
  padding: 80px 0;
  margin-top: -70px;
}
.why h2 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding-top: 30px;
}
.why ul {
  list-style: none;
  padding: 0;
}
.feature-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.feature-list i {
  color: #ffffff;
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-list span {
  line-height: 1.5;
}

/* BENEFITS */

.benefits {
  padding: 80px 0;
  background: url("../img/autohaus.jpg");
  background-size: cover;
}
.benefits h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.benefits ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}
.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.benefits i {
  color: #4e8df5;
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.benefits span {
  line-height: 1.5;
}
.benefits li {
  margin-bottom: 12px;
}


/* CTA */
.cta {
  padding: 60px 0;
  text-align: center;
}
.cta h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
.cta p {
  font-size: 18px;
  text-align: center;
}

.footer-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-list li a {
  color: #ffffff;
}
footer {
  background: #1f1f1f;
  color: white;
  padding: 25px 0;
}

