.why-choose {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e0e7ff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23why-grain)"/></svg>');
  pointer-events: none;
}

.wc-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wc-container-title {
  padding: 0;
  background-color: transparent;
  font-size: 32pt;
  text-align: center;
  margin-bottom: 20px;
}

.wc-container-title h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3748;
}

.wc-container-title span {
  color: #7d53de;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wc-container-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wc-container-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wc-container-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7d53de 0%, #9c7ae8 100%);
}

.wc-container-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wc-container-card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.wc-container-card h4 {
  margin: 0 0 20px 0;
  color: #2d3748;
  font-size: 20pt;
  font-weight: 700;
  line-height: 1.3;
}

.wc-container-card p {
  max-width: none;
  margin-bottom: 30px;
  flex-grow: 1;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.wc-container-card svg {
  align-self: flex-end;
  margin-top: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.wc-container-card:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.wc-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.wc-button-container .btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 83, 222, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.wc-button-container .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.wc-button-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125, 83, 222, 0.4);
}

.wc-button-container .btn:hover::before {
  left: 100%;
}

@media screen and (max-width: 1024px) {
  .wc-container-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .wc-container-card-content {
    padding: 35px 25px;
  }
}

@media screen and (max-width: 768px) {
  .why-choose {
    padding: 50px 20px;
  }

  .wc-container {
    gap: 40px;
  }

  .wc-container-title {
    font-size: 26pt;
    margin-bottom: 15px;
  }

  .wc-container-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wc-container-card-content {
    padding: 30px 20px;
  }

  .wc-container-card h4 {
    font-size: 18pt;
    margin-bottom: 15px;
  }

  .wc-container-card p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .wc-button-container {
    justify-content: center;
  }

  .wc-button-container .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .why-choose {
    padding: 40px 15px;
  }

  .wc-container {
    gap: 30px;
  }

  .wc-container-title {
    font-size: 22pt;
    margin-bottom: 10px;
  }

  .wc-container-card-content {
    padding: 25px 15px;
  }

  .wc-container-card h4 {
    font-size: 16pt;
    margin-bottom: 12px;
  }

  .wc-container-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .wc-button-container .btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
}
