.surprise-showcase-wrapper {
   background: #07194A url(surprise-showcase-back.png) 50% 100% no-repeat;
   background-size: 100% auto;
   padding: 50px 0 460px;
}

.surprise-wrapper {
   padding-bottom: 100px;
   font-size: 24px;
   line-height: 1.4;
}

.surprise-container {
   max-width: 1228px;
   margin-left: auto;
   margin-right: auto;
}

.surprise-showcase {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   align-items: center;
   color: #fff;
}

.surprise-showcase__content {
   display: flex;
   flex-direction: column;
   gap: 24px;
}

.surprise-showcase__title {
   font-size: 60px;
   line-height: 1.2;
   text-transform: uppercase;
   font-weight: bold;
}

.surprise-showcase__text {
   font-size: 32px;
   line-height: 1.4;
   margin-bottom: 24px;
}

.surprise-button {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   max-width: 520px;
   height: 84px;
   background-color: #0072F0;
   text-decoration: none;
   color: #fff;
   border-radius: 10px;
   font-size: 30px;
}

.surprise-showcase__image img {
   max-width: none;
}

.surprise-showcase__image {
   min-width: 0;
}

.surprise-modern-title {
   font-size: 60px;
   line-height: 1.2;
   font-weight: bold;
   text-align: center;
   background: linear-gradient(92.5deg, #955C34 -5.53%, #955D34 23.35%, #F3CE8A 42.8%, #A4673A 61.16%, #955C34 100.47%);
   color: #fff;
   border-radius: 0 50px 0 50px;
   padding: 15px 20px;
   margin-bottom: 48px;
}

.surprise-advantages {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
   margin-bottom: 130px;
   padding-top: 110px;
}

.surprise-advantages__item {
   border-radius: 20px;
   background: #00459C url(surprise-advantages-back.png) 100% 50% no-repeat;
   background-size: auto 100%;
   padding: 60px 32px;
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 24px;
   position: relative;
}

.surprise-advantages__item:nth-child(2) {
   top: -110px;
}

.surprise-advantages__title {
   font-size: 32px;
   line-height: 1.2;
   font-weight: bold;
}

.surprise-advantages__image {
   position: absolute;
   pointer-events: none;
   z-index: 1;
}

.surprise-advantages__image img {
   max-width: none;
}

.surprise-title {
   font-size: 60px;
   line-height: 1.2;
   font-weight: bold;
   margin-bottom: 64px;
}

.surprise-faqs {
   display: flex;
   flex-direction: column;
   gap: 32px;
}

.surprise-faq {
   border-radius: 14px;
   overflow: hidden;
   background: linear-gradient(180deg, rgba(184, 215, 254, 0.01) 0%, rgba(184, 215, 254, 0.3) 100%);
   border: 1px solid rgba(0, 69, 156, 0.06);
}

.surprise-faq__title {
   display: flex;
   justify-content: space-between;
   gap: 20px;
   font-size: 32px;
   font-weight: bold;
   cursor: pointer;
   padding: 15px 40px;
   position: relative;
}

.surprise-faq__title svg {
   width: 26px;
   height: 26px;
   flex-shrink: 0;
   display: block;
   fill: #272727;
   margin-top: 8px;
   transition: trasform .15s;
}

.surprise-faq__title.active svg {
   transform: rotate(45deg);
   fill: #fff;
}

.surprise-faq__content {
   padding: 0 40px 32px;
   display: none;
}

.surprise-faq.active {
   background: linear-gradient(90deg, #00459C 0%, #001A62 100%);
   color: #fff;
}

@media (max-width: 1200px) {
   .surprise-showcase-wrapper {
      padding-bottom: 100px;;
   }

   .surprise-wrapper {
      padding-bottom: 50px;
      font-size: 18px;
   }

   .surprise-showcase {
      display: flex;
      flex-direction: column-reverse;
      gap: 24px;
   }

   .surprise-showcase__title {
      font-size: 34px;
   }

   .surprise-showcase__text {
      font-size: 24px;
   }

   .surprise-button {
      font-size: 20px;
      height: 56px;
   }

   .surprise-showcase__image img {
      max-width: 100%;
   }

   .surprise-modern-title {
      font-size: 24px;
   }

   .surprise-advantages {
      padding-top: 0;
      grid-template-columns: repeat(1, 1fr);
   }

   .surprise-advantages__item:nth-child(2) {
      top: 0;
   }

   .surprise-advantages__image {
      display: none;
   }

   .surprise-title {
      font-size: 24px;
      margin-bottom: 32px;
   }

   .surprise-faq__title {
      font-size: 18px;
      padding: 15px;
   }

   .surprise-faq__content {
      padding: 0 15px 15px;
      font-size: 14px;
   }

   .surprise-faqs {
      gap: 12px;
   }

   .surprise-faq__title svg {
      width: 20px;
      height: 20px;
   }
}