.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.carousel-track {
  display: flex;
  transition: transform 0.2s ease-in-out;
  width: 100%;
  will-change: transform;
  user-select: none;
}

.carousel-slide {
  justify-content: space-between;
  box-sizing: border-box;
  min-width: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: #1d4ed8;
  transform: scale(1.2);
}

.service-card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: grab;
  user-select: none;
}

.service-card:active {
  cursor: grabbing;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card i {
  color: #1d4ed8;
  margin-right: 16px;
  margin-top: 8px;
  font-size: 1.5rem;
}

.service-card div {
  flex: 1;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.4;
}

.service-card h4 a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-card h4 a:hover {
  color: #1d4ed8;
}

.service-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.faq-answer {
  display: none;
}

.faq-open .faq-answer {
  display: block;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

h4 a {
  color: #1e3a8a !important;
}

h4 a:hover {
  color: #ff8562 !important;
}

@media (max-width: 639px) {
  .carousel-slide {
    flex: 0 0 100%;
    padding: 0 16px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .carousel-slide {
    flex: 0 0 50%;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 16px;
  }
}
