#special-offer {
  background: var(--secondary);
}

#special-offer *:not(button, a) {
  color: var(--white);
}

#special-offer .special-offer-inner {
  padding: 54px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#special-offer h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 125%;
  text-transform: uppercase;
}

#special-offer h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}

#special-offer p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  #special-offer {
    background: transparent;
  }
  #special-offer .special-offer-inner {
    background: var(--secondary);
    padding: 54px 20px;
    border-radius: 8px;
    padding: 30px 16.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  #special-offer .container {
    padding: 0 20px;
    display: block;
  }

  #special-offer h2 {
    font-size: 28px;
    line-height: 100%;
  }
  #special-offer h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
  }
  #special-offer p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }
}
