/* Why Choose Component Styles */
.why-choose {
  padding: 120px 0 64px;
  background: #ffffff;
}

.why-choose .container {
  margin: 0 auto;
  padding: 0;
}

.why-choose .section-title {
  font-size: 54px;
  font-weight: 550;
  font-family: var(--font-family-title);
  margin: 0 0 32px 70px;
  text-align: left;
}

/* Grid Layout */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #CBC9D1;
}

/* Reason Card */
.reason-card {
  background: #ffffff;
  padding: 48px 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 369px;
  border-right: 1px solid #CBC9D1;
  border-bottom: 1px solid #CBC9D1;
}

/* Remove right border on every 2nd card (right column) */
.reason-card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border on last two cards (last row) */
.reason-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(315deg, #C37A32 1.49%, #9C6425 20.73%, #C28F4E 73.39%, #C68E4D 87.72%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px;
}

.reason-icon img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Make icons white */
}

.reason-title {
  font-size: 26px;
  font-family: var(--font-family-title);
  font-weight: 550;
  margin: 0 0 8px 0;
}

.reason-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1040px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose .section-title {
    font-size: 34px;
    margin: 0 0 28px 40px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    flex-direction: row;
    min-height: auto;
    height: unset;
    border: 0;
    border-bottom: 1px solid #CBC9D1;
    justify-content: unset;
    padding: 28px 40px;
  }

  .reasons-grid {
    border: 0;
  }

  .reason-card:nth-last-child(-n+2) {
    border-bottom: 1px solid #CBC9D1;
  }

  .reason-icon {
    height: 32px;
    width: 32px;
  }

  .reason-icon img {
    width: 20px;
    height: 20px;
  }

  .reason-card:last-child {
    border-bottom: none;
  }

  .reason-card:first-child {
    border-top: 1px solid #CBC9D1;
  }

  .reason-title {
    font-size: 22px;
    line-height: 32px;
  }

  .reason-description {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 640px) {
  .why-choose {
    padding: 40px 20px;
  }

  .why-choose .section-title {
    font-size: 34px;
    margin: 0 0 24px 0;
    line-height: 40px;
  }

  .reason-card {
    padding: 30px 20px;
  }

  .reason-title {
    font-size: 1.25rem;
  }

  .reason-description {
    font-size: 0.9375rem;
  }
}