body {
  font-family: "Inter", Arial, sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Section */
.tips-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.tips-tag {
  color: #04b9a7;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tips-title {
  font-size: 30px;
  margin-bottom: 14px;
}

.tips-desc {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* MAIN WHITE CARD */
.tips-wrapper {
  position: relative;
}

.tips-content {
  background: white;
  padding: 40px 40px 55px;
  border-radius: 120px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  width: 100%;
  transition: opacity .4s ease;
  opacity: 0; /* fade-in JS */
}

.tips-main-text {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tips-sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 26px;
}

/* CTA button EXACT style (same as screenshot) */
.tips-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #04d2bd, #007c87);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.tips-btn:hover {
  color: white !important;   /* stays white */
  text-decoration: none;     /* remove underline */
}


.tips-btn img {
  width: 18px;
  height: 18px;
}

/* Right arrow button */
.tips-arrow {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-70%);
/*   background: white; */
  border: none;
  width: 40px;
  height: 40px;
/*   border-radius: 50%; */
  font-size: 36px;
  color: #00b3a7;
/*   box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  cursor: pointer;
}

.left-arrow {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translateY(-70%);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 36px;
  color: #00b3a7;
  cursor: pointer;
}

/* =======================================
   TABLET RESPONSIVE (max-width: 992px)
   ======================================= */
@media (max-width: 992px) {

  .tips-section {
    margin: 40px auto;
    padding: 0 20px;
  }

  .tips-title {
    font-size: 26px;
  }

  .tips-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* Shrink the white card */
  .tips-content {
    padding: 30px 30px 45px;
    border-radius: 80px;
  }

  .tips-main-text {
    font-size: 20px;
  }

  .tips-sub-text {
    font-size: 14px;
  }

  /* Arrows come closer inside */
  .tips-arrow {
    right: -60px;
    font-size: 32px;
  }

  .left-arrow {
    left: -60px;
    font-size: 32px;
  }
}


/* =======================================
   MOBILE RESPONSIVE (max-width: 600px)
   ======================================= */
@media (max-width: 600px) {

  .tips-section {
    margin: 30px auto;
    padding: 0 16px;
  }

  .tips-tag {
    font-size: 13px;
  }

  .tips-title {
    font-size: 22px;
  }

  .tips-desc {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  /* White card becomes tighter */
  .tips-content {
    padding: 24px 20px 35px;
    border-radius: 50px;
  }

  .tips-main-text {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .tips-sub-text {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Button reduces */
  .tips-btn {
    padding: 10px 20px;
    font-size: 13px;
    gap: 6px;
  }

  .tips-btn img {
    width: 16px;
    height: 16px;
  }

  /* Arrows move INSIDE so they are visible on phone */
  .tips-arrow {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
  }

  .left-arrow {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
  }
}

