.service-cta-btn {
  background-color: #26028b;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(38, 2, 139, 0.3);
  color: #fff;
}
.service-cta-btn:hover {
  background-color: #1a0160;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(38, 2, 139, 0.4);
}
.btn-custom {
  background-color: #9f9f9f;
  color: white;
  border: 1px solid #9f9f9f;
  transition: background-color 0.3s ease;
  padding: 10px 20px;
  font-size: 16px;
}
.btn-custom:hover {
  background-color: #7a7a7a;
  color: white;
  border: 1px solid #9f9f9f;
}
.btn-custom.active {
  background-color: #1e0270;
  color: white;
  border: 1px solid #390eb2;
  font-size: 18px;
}
.btn-group .btn {
  margin: 0;
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.btn-group .btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (min-width: 577px) and (max-width: 992px) {
  .btn-group .btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .btn-group .btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
    margin: 0 !important;
    border-right: none !important;
  }
  .btn-group .btn:not(:last-child) {
    border-right: none !important;
  }
}
@media (max-width: 576px) {
  .btn-group {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }
  .btn-group .btn {
    flex: 1;
    margin: 0 !important;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 16px;
  }
  .btn-group .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .btn-group .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
