.navbar {
  background: white;
}

/* --- Background Gradient (Light Pink) --- */
.bg-light-pink-gradient {
  position: relative;
  background: linear-gradient(
    315deg,
    #ffeff1 0%,
    #ffffff 50%,
    #fff5f6 81%,
    #ffeff1 100%
  );
  overflow: hidden;
}

/* Reuse decorative lines from FAQ/Contact if needed */
.bg-light-pink-gradient .deco-lines-img {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: url("../assets/images/why-choose-us-desk.png") no-repeat center /
    cover;
  aspect-ratio: 1440 / 585;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.bg-white {
  background: linear-gradient(180deg, #ffffff 50%, #ffeff1 100%);
  position: relative;
  overflow: hidden;
}

.bg-white .deco-lines-img {
  position: absolute;
  top: 0;
  right: 0;
  background: url("../assets/images/what-you-need-desk.png") no-repeat center /
    cover;
  aspect-ratio: 1440 / 1008;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
}

.bg-white .container {
  padding-inline: 0;
}

/* --- Layout --- */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  max-width: 1240px;
}

.bg-white .split-layout {
  position: relative;
  grid-template-columns: 1.26fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1440px;
  padding-right: 40px;
  margin: 0 auto;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content-side-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bg-white p {
  font-weight: 500;
}

.main-img {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Strategy List (Section 2) --- */
.strategy-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.strategy-list li {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  border: 1px solid #ff3f5f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.strategy-list li:hover {
  transform: translateY(-6px); /* Moves up */
  box-shadow: 0 10px 30px rgba(255, 63, 95, 0.15); /* Soft red shadow */
  border-color: #fa1239; /* Changes border from pink to brand red */
}

.icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.icon-box img {
  width: 100%;
  height: 100%;
}

.strategy-list span {
  font-size: 20px;
  font-weight: 400;
  color: var(--neutral-900);
  line-height: 1.5;
}

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

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
  .bg-light-pink-gradient .deco-lines-img {
    background: url("../assets/images/why-choose-us-bg.png") no-repeat center /
      cover;
    aspect-ratio: 768 / 1021;
  }

  .bg-white .deco-lines-img {
    background: url("../assets/images/what-you-need-bg.png") no-repeat center /
      cover;
    aspect-ratio: 768 / 1546;
    bottom: 0;
  }

  .split-layout {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 35px;
    text-align: center;
  }

  .bg-white .split-layout {
    padding-right: 0;
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 35px;
    text-align: center;
    padding-inline: 40px;
  }

  .content-side {
    gap: 36px;
    max-width: 800px;
    margin: 0 auto;
  }

  .content-side h2 {
    width: 85%;
    margin: 0 auto;
  }

  .content-side-desc {
    gap: 24px;
  }

  .main-img {
    max-width: 470px;
  }

  /* Reset alignment for lists on mobile/tablet */
  .strategy-list li {
    text-align: left;
  }

  /* Adjust Frames for center alignment */
  .image-frame {
    margin: 0 auto;
  }

  .dark-frame-style .main-img {
    max-width: 632px;
  }

  .bg-white .content-side {
    gap: 24px;
  }

  .bg-white h2 {
    width: 80%;
  }

  .bg-white p {
    width: 80%;
    margin: 0 auto;
  }

  .warning-list li .text-group {
    text-align: left;
  }
}

/* Mobile (Max 768px) */
@media (max-width: 767px) {
  .deco-lines-img {
    display: none;
  }

  .split-layout {
    gap: 40px;
  }

  .content-side {
    gap: 30px;
  }
  .content-side h2 {
    width: 90%;
  }

  .sub-heading {
    font-size: 20px;
    font-weight: 500;
  }

  .main-img {
    max-width: 100%;
  }

  /* Adjust frames to fit smaller screens */
  .red-frame-style::before {
    border-width: 5px;
    left: 15px;
    bottom: 15px;
  }

  /* Ensure reverse-mobile class works (Image Top, Text Bottom) */
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .strategy-list li {
    align-items: start;
  }

  .bg-white .split-layout {
    padding-inline: 24px;
  }

  .bg-white p {
    width: 100%;
    font-size: 18px;
    margin-bottom: 6px;
  }
}
