/* assets/style/home.css */

/* Page spacing similar to screenshot */
.home {
  padding: 22px 0 60px;
  color: #111;
}

/* Top "welcome" block */
.welcome__image {
  width: 100%;
  max-width: 380px;        /* keeps it like the screenshot */
  margin: 0 auto;
}

.welcome__image img {
  width: 100%;
  height: 280px;           /* screenshot-like crop */
  object-fit: cover;
  display: block;
}

/* Right side title alignment */
.welcome__title {
  text-align: center;
  padding-top: 35px;       /* pushes title down like screenshot */
}

.welcome__title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.welcome__subtitle {
  margin-top: 26px;
  font-size: 13px;
  color: #111;
}

/* Center paragraph block */
.welcome__text {
  max-width: 640px;
  margin: 55px auto 0;
  text-align: center;
  font-style: italic;
  line-height: 1.75;
  font-size: 14px;
  color: #222;
}

.welcome__text p {
  margin: 0 0 14px;
}

.welcome__signature {
  margin-top: 26px;
  font-style: normal;
  font-size: 13px;
  color: #111;
}

/* Why section */
.why {
  margin-top: 38px;
  text-align: center;
}

.why h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 800;
}

.why__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;         /* matches screenshot (bullets on left) */
}

.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  margin: 10px 0;
}

.why__list i {
  margin-top: 3px;
  font-size: 18px;
  color: #2fb34a;           /* green check */
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .welcome__title {
    padding-top: 10px;
  }

  .welcome__image img {
    height: 240px;
  }

  .why h2 {
    font-size: 30px;
  }

  .why__list li {
    font-size: 16px;
  }
}


/* =========================
   Icons + CTA section
========================= */
.features-cta {
  padding: 50px 0 60px;
  text-align: center;
}

.features {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f5a623; /* orange */
}

.feature i {
  font-size: 38px;
  margin-bottom: 8px;
}

.feature span {
  font-size: 14px;
  font-weight: 500;
}

/* CTA button */
.cta-button {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid #f5a623;
  border-radius: 25px;
  color: #f5a623;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #f5a623;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 767.98px) {
  .features {
    gap: 40px;
  }
}
