@font-face {
  font-family: Inter;
  src: url(Inter.ttf) format('truetype');
}

body {
  font-family: Inter;
  background-color: #F8EDEB;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 16px;
}

header,
section,
footer {
  text-align: center;
}

p {
  font-family: Inter;
  max-width: 673px;
  margin: 30px auto;
  font-size: 1.5rem;
  text-align: left;
  color: #444054;
  line-height: 1.4;
}

.promo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.promo-card {
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 440px;
  overflow: hidden;
  text-align: center;
  font-family: Inter;
  margin: 0 auto;
}

.promo-header {
  background-color: #FFDBD4;
  color: #444054;
  padding: 1.25rem;
}

.promo-header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-content {
  padding: 1.25rem;
  color: #444054;
}

.benefit-item {
  text-align: left;
  margin: 0 1.5rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.benefit-item-promo {
  text-align: center;
  margin: 0 1rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.price-text {
  font-size: 2rem;
  color: #444054;
  font-weight: bold;
}

.new-price {
  margin: 1rem 0;
  font-size: 1.7rem;
  font-weight: bold;
  color: #60d394;
}

.old-price {
  text-decoration: line-through;
  font-weight: bold;
  color: #ee6055;
  margin-right: 0.25rem;
}

.promo-button {
  display: inline-block;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #444054;
  color: white;
  border-radius: 90px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  width: 80%;
  max-width: 280px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.promo-button:hover {
  background-color: #60d394;
  transform: translateY(-2px);
}

.testimoniale {
  display: block;
  margin: 2rem auto;
  width: 90%;
  max-width: 1006px;
  height: auto;
}

.center {
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  color: #444054;
  line-height: 1.4;
  margin: 2rem auto;
  max-width: 90%;
}

.center-s {
  text-align: left;
  font-family: Inter;
  font-size: 1.5rem;
  color: #444054;
  line-height: 1.4;
  margin: 2rem auto;
  max-width: 90%;
  width: fit-content;
}

.final {
  background-color: #FFDBD4;
  color: black;
  padding: 1rem 0;
}

.final-center {
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  color: black;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}

section.final{
  padding-bottom: 1rem;
}

header {
  background-color: #FFDBD4;
  padding: 5px;
}

.logo {
  width: 200px;
  max-width: 80%;
  height: auto;
  margin: 0.8rem 0;
  transition: width 0.3s ease;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #444054;
  color: white;
  border-radius: 90px;
  text-decoration: none;
  margin: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  width: auto;
  max-width: 90%;
}

.button:hover {
  background-color: #60d394;
  transform: translateY(-2px);
}

.blend {
  margin-bottom: -0.5rem;
}

/* Scrolling carousel */
.carousel {
  overflow: hidden;
  padding: 1rem 0;
}

.scroll-track1 {
  display: flex;
  gap: 2rem;
  animation: scroll-left 30s linear infinite;

}

.scroll-track2 {
  display: flex;
  gap: 2rem;
  animation: scroll-right 30s linear infinite;
}

.scroll-track1 img, .scroll-track2 img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .intro{
    margin: 0 1rem;
  }

  header{
    padding: 0;
  }

  p{
    font-size: 1.2rem;
    margin: 20px auto;
  }

  p.center  {
    font-size: 1.2rem;
  }

  p.center-s {
    font-size: 1.2rem ;
  }

  p.final-center {
    font-size: 1.2rem;
  }

  .promo-card {
    width: 90%;
    border-radius: 25px;
  }
  
  .promo-header h1 {
    font-size: 2rem;
  }
  
  .benefit-item {
    margin: 0 0.5rem 0.8rem;
    font-size: 1.2rem;
  }

  .benefit-item-promo {
    font-size: 1.3rem;
  }

  .price-text, .new-price {
    font-size: 1.6rem;
  }
  
  .promo-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  
  .scroll-track1{
    animation: scroll-left 9s linear infinite;
  }

  .scroll-track2{
    animation: scroll-right 9s linear infinite;
  }

  .scroll-track1 img, .scroll-track2 img {
    width: 200px;
  }

  section.final{
  padding-bottom: 1rem;
}
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .promo-header h1 {
    font-size: 1.6rem;
  }
  
  .benefit-item {
    margin: 0 0.5rem 0.8rem;
    font-size: 1.2rem;
  }

  .benefit-item-promo {
    font-size: 1.3rem;
  }

  .price-text, .new-price {
    font-size: 1.6rem;
  }
  
  .logo {
    width: 180px;
  }
  
  .scroll-track1 img, .scroll-track2 img {
    width: 180px;
  }

  section.final{
  padding-bottom: 1rem;
}
}

/* Image scaling */
.responsive-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}