* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.products-wrapper {
  text-align: left !important;
}

#free-tool-id {
  text-align: center !important;

  font-size: 30px;
  letter-spacing: 4px;
  margin: 2rem 0;
  margin-top: 10px;
}

.head-desc {
  text-align: center !important;
}

.container-scroll {
  width: 98%;
  margin: 0 auto;
  margin-left: -0px !important;
}

.section-header {
  margin-bottom: 0px;
}

.section-title {
  font-size: 24px !important;
  font-weight: 700;
  display: inline-block;

}

.section-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #6e6e73;
  display: inline-block;
}

.scrollable-container {
  position: relative;
  margin: 0 -20px;
}

.scroll-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding: 20px;
  display: flex;
  gap: 20px;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  flex: 0 0 auto;
  width: 320px;
  background-color: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-top: 15px;
}

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

.card-dark {
  background-color: #1d1d1f;
  color: white;
}

.card-light {
  background-color: #f5f5f7;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 14px;
  color: #0066cc;
  font-weight: 500;
  margin-bottom: 8px;
}

.dark-card .card-subtitle {
  color: #6bf;
}

.card-price {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 20px;
}

.dark-card .card-price {
  color: #a1a1a6;
}

.card-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
  opacity: 1;
}

.scroll-arrow-prev {
  left: 10px;
}

.scroll-arrow-next {
  right: 10px;
}

.chevron {
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  display: inline-block;
}

.chevron-left {
  transform: rotate(-135deg);
}

.chevron-right {
  transform: rotate(45deg);
}



/* Mobile */
@media (max-width: 767px) {
  .container-scroll {
    width: 89%;
    margin-left: 8% !important;
  }
  .section-header {
    text-align: left;
  }
  .section-title {
    font-size: 18px !important;
    display: block;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .card {
    width: 300px;
  }

  #free-tool-id {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 35px;
    white-space: pre-line;
  }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .container-scroll {
    width: 89%;
    margin-left: 8% !important;
  }
  .section-header {
    text-align: left;
  }

  .head-desc {
    margin-left: 8% !important;
  }

  #free-tool-id {
    margin-left: 8%;
  }
}

/* Laptop */
@media (min-width: 1025px) and (max-width: 1440px) {
  #free-tool-id {
    margin-left: 0%;
  }
}

/* 4K and larger screens */
@media (min-width: 1441px) {

}
