.why-choose-us-section {
  padding: 60px 20px;
  background-color: transparent;
  color: var(--primary);
  text-align: center;
}

.why-heading {
  font-size: 3.2rem;
  margin-bottom: 44px;
  font-weight: 900;
  letter-spacing: 1px;
  border-bottom: 4px solid var(--accent-blue);
  display: inline-block;
  padding-bottom: 0.3em;
}

.why-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.why-features {
  flex: 1;
  text-align: left;
}

.feature-wrapper {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}

.feature-wrapper.left {
  justify-content: flex-start;
  margin-left: -40px;
}
.feature-wrapper.left:nth-of-type(1),
.feature-wrapper.left:nth-of-type(3) {
  margin-left: -200px;
}
.feature-wrapper.right {
  justify-content: flex-end;
}

.feature {
  width: 90%;
  max-width: 500px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border 0.3s;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1.5px solid var(--border, #333);
  background: rgba(0,0,0,0.7);
  color: var(--primary);
  box-shadow: 0 2px 12px 0 #000a;
}
.feature.selected, .feature:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-indigo));
  border-color: var(--accent-blue);
}
.feature span {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-top: 5px;
  font-weight: 400;
  transition: color 0.3s;
}
.feature.selected span, .feature:hover span {
  color: #fff;
}

.why-info-box {
  flex: 1;
  background: rgba(20, 20, 40, 0.9);
  padding: 30px;
  border-left: 3px solid var(--accent-blue);
  min-height: 200px;
  text-align: center; /* Centred text */
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  color: var(--secondary);
  box-shadow: 0 2px 12px 0 var(--accent-blue), 0 2px 12px 0 var(--accent-indigo, #a855f7);
  justify-content: center; /* Center content horizontally */
}

.why-info-box p {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.45rem; /* Increased size for readability */
  text-align: center;  /* Center the paragraph */
  line-height: 1.6;
}
.why-info-box strong {
  color: var(--accent-blue);
  font-size: 1.15em;
  display: block;
  margin-bottom: 0.3em;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .why-heading {
    font-size: 2.1rem;
    padding-bottom: 0.2em;
    border-bottom-width: 2px;
  }
  .why-container {
    flex-direction: column;
    text-align: center;
  }
  .why-info-box {
    border-left: none;
    border-top: 3px solid var(--accent-blue);
    margin-top: 20px;
    text-align: center;
    align-items: flex-start;
    justify-content: center;
  }
  .why-info-box p {
    font-size: 1.08rem;
    text-align: center;
  }
  .why-features {
    text-align: center;
  }
  .feature-wrapper {
    justify-content: center !important;
    margin-left: 0 !important;
  }
  .feature-wrapper.left:nth-of-type(1),
  .feature-wrapper.left:nth-of-type(3) {
    margin-left: 0 !important;
  }
}