/* =============================
   TAKE CARE SECTION
============================= */

.take-care-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tc-wrapper {
  background-color: #fff;
  color: white;
  padding: 20px 20px;
  text-align: center;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
}

.take-care {
  background-color: #1d56a7;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 30px;
}

.take-care .utama {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.divider-care {
  width: 60px;
  height: 4px;
  background-color: #fff;
  margin: 0 auto 30px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-radius: 20px;
  margin-top: 30px;
}

.catalog-scroll-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.catalog-scroll-track {
  display: flex;
  gap: 30px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.catalog-scroll-track img {
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

/* Animasi berjalan */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.take-care .kedua {
  font-size: 24px;
  margin-bottom: 10px;
}

.take-care p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #ccc;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  color: black;
  border-radius: 20px;
  width: 220px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card .icon {
  background-color: #1d56a7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.card h4 {
  margin: 0;
  font-weight: bold;
  color: #1d56a7;
}

.card p {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}
