.compare-section {
  /* background: #fff; */
  border: 1px solid rgb(248, 240, 241);
  border-radius: 20px;
       box-shadow: 0 10px 25px rgb(0 0 0 / 1%);
   padding: 40px 30px; 
  /* margin: 60px auto; */
  position: relative;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #4b1cac;
  border-bottom: 2px solid #e8d0ff;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.compare-header i,
.compare-header svg {
  color: #d63384;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.info-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.info-card {
  flex: 1;
  background: #f4f6ff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0ff;
  min-width: 250px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i,
.info-card svg {
  color: #7b2ff7;
  font-size: 22px;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  display: block;
}

.info-card h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.info-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.compare-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight-line {
  border-left: 3px solid #8b5cf6;
  padding-left: 10px;
  margin-bottom: 15px;
}

.compare-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

.trusted {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trusted span {
  color: #28a745;
  font-size: 10px;
  display: flex;
  align-items: center;
}

.trusted span i {
  font-size: 10px;
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
  }

  .compare-section {
    padding: 30px 20px;
    margin: 30px auto;
  }

  .compare-header {
    font-size: 16px;
  }
}
