.ctas {
padding-bottom: 140px;
}

.ctas__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}



.cta h3 {
color:  #FFF;
text-align: center;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Poppins;
font-size: 32px;
font-weight: normal;
font-weight: 700;
line-height: 44px; /* 137.5% */
}

.cta p {
color: #8A8F98;
text-align: center;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Poppins;
font-size: 16px;
font-weight: normal;
font-weight: 400;
line-height: 28px; 
}

.cta__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(90deg, #ff7a6e 0%, #ffb347 100%);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #FFF;
text-align: right;
font-family: Poppins;
font-size: 14px;
font-weight: normal;
font-weight: 700;
line-height: 24px; /* 171.429% */
}

.cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .ctas__grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width:768px){
.cta h3{
  font-size: 20px;
  line-height: 30px;
}
.cta p{
  font-size: 14px;
  line-height: 20px;
}
.ctas__grid{
  gap: 50px;
}
}