.why {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.why {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8f9fa;
}

.why .section {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

.why .header {
  text-align: center;
  margin-bottom: 20px;
}

.why .header h2 {
  font-size: 32px;
  color: #333;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  padding: 0 60px;
}

.why .header h2::before,
.why .header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #ddd;
}

.why .header h2::before {
  left: 0;
}

.why .header h2::after {
  right: 0;
}

.why .header .title-sm {
  color: #888;
  font-size: 14px;
}

.why .nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.why .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.why .nav-item:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.why .nav-item.active {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.why .nav-item svg {
  width: 48px;
  height: 48px;
}

.why .nav-item span {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
}

.why .nav-item svg path[fill="none"],
.why .nav-item svg line,
.why .nav-item svg circle[fill="none"],
.why .nav-item svg rect[fill="none"] {
  stroke: #333;
}

.why .nav-item:hover .hover-bottom-fill {
  fill: #c00;
  stroke: white;
}

.why .nav-item:hover svg .hover-fill {
  fill: white;
}

/* .nav-item:hover svg .hover-stroke {
      stroke: white;
    } */

.why .nav-item.active svg .hover-bottom-fill {
  fill: #c00;
  stroke: white;
}

.why .nav-item.active svg .hover-fill {
  fill: white;
}

/* .nav-item.active svg .hover-stroke {
      stroke: white;
    } */

.why .content-wrap {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.why .content {
  display: none;
}

.why .content.active {
  display: flex;
}

.why .content-img {
  flex: 1;
  min-height: 350px;
}

.why .content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why .content-text {
  flex: 1;
  padding: 40px;
}

.why .content-text h4 {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.why .content-text h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a5fb4;
  display: inline-block;
}

.why .content-text p {
  color: #777;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 24px;
}

.why .btn {
  display: inline-block;
  background: #1a5fb4;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}

/* .arrows { display: flex; gap: 12px; margin-top: 30px; }
.arrows button { width: 36px; height: 36px; border: 1px solid #ddd; background: #fff; cursor: pointer; border-radius: 4px; color: #999; font-size: 16px; }
.arrows button:hover { border-color: #1a5fb4; color: #1a5fb4; } */

@media (max-width: 768px) {
  .why .content.active {
    flex-direction: column;
  }

  .why .content-img {
    width: 100%;
    min-height: 200px;
  }

  .why .nav {
    gap: 16px;
  }

  .why .nav-item svg {
    width: 36px;
    height: 36px;
  }

  .why .nav-item {
    gap: 8px;
    padding: 8px 8px;
  }

  .why .content-text {
    padding: 10px;
  }
}

@media (max-width: 500px) {
  .why .nav {
    margin-bottom: 15px;
  }

  .why .content-img {
    min-height: 150px;
  }

  .why .content-text p {
    margin-bottom: 10px;
  }

  .why .content-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}


.why ul {
  list-style: none;
  padding: 0;
}

.why ul li {
  position: relative;
  padding-left: 28px;
  /* margin-bottom: 16px; */
  line-height: 1.6;
}

.why ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c41e24;
  font-weight: bold;
  font-size: 16px;
}