.trial-run-section {
  padding: 20px 0%;
  text-align: center;
}

/* TOP CONTENT CENTERED */
.trial-top {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0px 10%;
}

.trial-row {
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: center;
  gap: 40px;
}
.trial-top h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--purple-color);
}

.trial-run-p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--grey-color);
  letter-spacing: normal;
}

.trial-run-btn {
  text-decoration: none;
  background-color: var(--orange-color);
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease; /* smooth hover effect */
}

.trial-run-btn:hover {
  transform: translateY(-4px);
}

/* Image columns */
.image-col img {
  width: 70%; /* adjust size */
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.right-col {
  display: flex;
  justify-content: flex-start;
}
.left-col {
  display: flex;
  justify-content: flex-end;
}

.button-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BUTTON MIDDLE */
.button-col {
  flex: 0 0 auto;
}

/* Responsive: stack layout */
@media (max-width: 400px) {
  .button-col {
    width: 60%;
  }
  .trial-run-btn {
    text-decoration: none;

    padding: 16px 24px;
  }
  .trial-row {
    gap: 10px;
  }

  .trial-top {
    margin-bottom: 10px;
  }

  .trial-run-p {
    padding-bottom: 20px;
    margin-bottom: 0px;
  }
}

.underline-reveal {
  position: relative;
  display: inline-block;
}

.underline-reveal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: var(--orange-color);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-reveal 3s ease-out infinite;
}

@keyframes underline-reveal {
  to {
    transform: scaleX(1);
  }
}
