/* Style for the trial banner container */
.trial-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #000;
  color: white;
  padding: 20px 60px;
}

/* Style for the left side of the trial banner */
.trial-banner-left {
  flex: 1;
}

/* Style for the secondary text on the left side */
.trial-banner-left-text-secondary {
  font-size: 56px;
}

/* Style for the primary text on the left side */
.trial-banner-left-text-primary {
  font-size: 20px;
}

/* Style for the button on the left side */
.trial-banner-left-button {
  display: inline-flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #1de1ce;
  font-weight: 700;
  font-size: 18px
  box-shadow: 0px 7px 20px 0px rgba(30, 226, 206, 0.15);
}

/* Style for the sub-text on the left side */
.trial-banner-left-sub-text {
  font-size: 14px;
}

/* Style for the right side of the trial banner */
.trial-banner-right {
  flex: 1;
}

/* Style for the image inside the right side */
.trial-banner-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.tr
ial-banner-right img {
  width: 100%;
  height: 200px; 
  border-radius: 8px;
  object-fit: cover; 
}

@media (max-width: 768px) {
  .trial-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .trial-banner-left,
  .trial-banner-right {
    width: 100%;
  }

  .trial-banner-left {
    margin-bottom: 20px;
  }
  
  .trial-banner-right {
    display: none;
  }
}