.why-section {
  padding: var(--padding);
  background: var(--section-white-bg);
  padding-bottom: 80px;
}

.why-section .why-container {
  max-width: var(--container-width);
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

/* LEFT IMAGE */
.why-image {
  width: 40%;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.why-content {
  width: 60%;
}

.why-content h2 {
  font-family: var(--site-font);
  color: var(--heading-dark);
  font-size: 2.765rem;
  margin-bottom: 25px;
}

/* ITEM */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ICON */
.why-item .icon {
  font-size: 20px;
  color: var(--accent);
  line-height: 1.2;
  margin-top: 5px;
}

/* TEXT */
.why-item h3 {
  font-size: 20px;
  margin: 0;
  color: var(--accent);
}

.why-item p {
  margin: 5px 0 0;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-image {
    width: 45%;
  }

  .why-content {
    width: 55%;
  }
}

@media (max-width: 767px) {
  .why-section .why-container {
    flex-direction: column;
  }

  .why-image,
  .why-content {
    width: 100%;
  }

  .why-image img {
    height: auto;
  }

  .why-content h2 {
    font-size: 28px;
  }
}


/* Business Section */
.business-section {
  padding: 30px 0 30px 0;
  background: var(--primary);
}

.business-section .business-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.business-section .content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */
.business-section h2 {
  font-family: var(--site-font);
  font-size: 42px;
  line-height: 1.3;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 600;
}

/* TEXT */
.business-section p {
  font-family: var(--site-font);
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .business-section {
    padding: 20px 0;
  }

  .business-section h2 {
    font-size: 34px;
  }

  .business-section p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .business-section {
    padding: 10px 0;
  }

  .business-section h2 {
    font-size: 26px;
  }

  .business-section p {
    font-size: 14px;
    text-align: center;
  }
}