html {
  scroll-behavior: smooth;
}

body {
  background: #0A0019;
  color: #fff;
  font-family: 'Manrope', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.main-container {
  max-width: 1264px;
  margin: 0 auto;
  padding: 0 32px;
}

.main-header {
  background-image: url('img/top_banner_rectangle_children_bg3.png');
  /*background-image: url('img/top_banner_rectangle_bg.png');*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
    overflow: hidden; /* Это уже есть, но убедимся */
    width: 100%; /* Добавляем явную ширину */
    max-width: 100%; /* Ограничиваем максимальную ширину */


}


/* Обычные мерцающие звезды */
.floating-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Большие яркие звезды */
.bright-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: brightTwinkle 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Быстрые мелкие звезды */
.fast-star {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: fastTwinkle 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Анимации для разных типов звезд */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes brightTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    }
}

@keyframes fastTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .floating-star,
    .bright-star,
    .fast-star {
        animation-duration: 3s; /* Замедляем на мобильных */
    }
}

@media (max-width: 480px) {
    .floating-star,
    .bright-star,
    .fast-star {
        animation-duration: 4s; /* Еще медленнее на маленьких экранах */
    }
}


.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow:
        0 0 8px white,
        0 0 16px rgba(255, 255, 255, 0.9),
        0 0 24px rgba(255, 255, 255, 0.7);
    animation: shootDiagonal 2s linear, intenseTwinkle 0.2s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Интенсивное мерцание */
@keyframes intenseTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    25% {
        opacity: 1;
        transform: scale(1.3);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    75% {
        opacity: 1;
        transform: scale(1.4);
    }
}

/* Анимация падения под наклоном */
@keyframes shootDiagonal {
    0% {
        left: -10px;
        top: 0%;
        opacity: 0;
        transform: rotate(-30deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: rotate(-30deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-30deg) scale(1);
    }
    100% {
        left: 110%;
        top: 100%;
        opacity: 0;
        transform: rotate(-30deg) scale(0);
    }
}

/* Разные углы падения */
.shooting-star.angle-1 {
    animation: shootAngle1 2s linear;
}

.shooting-star.angle-2 {
    animation: shootAngle2 2s linear;
}

.shooting-star.angle-3 {
    animation: shootAngle3 2s linear;
}

.shooting-star.angle-4 {
    animation: shootAngle4 2s linear;
}

@keyframes shootAngle1 {
    0% {
        left: -10px;
        top: 0%;
        opacity: 0;
        transform: rotate(-20deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: rotate(-20deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-20deg) scale(1);
    }
    100% {
        left: 110%;
        top: 100%;
        opacity: 0;
        transform: rotate(-20deg) scale(0);
    }
}

@keyframes shootAngle2 {
    0% {
        left: -10px;
        top: 0%;
        opacity: 0;
        transform: rotate(-35deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: rotate(-35deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-35deg) scale(1);
    }
    100% {
        left: 110%;
        top: 100%;
        opacity: 0;
        transform: rotate(-35deg) scale(0);
    }
}

@keyframes shootAngle3 {
    0% {
        left: -10px;
        top: 0%;
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    100% {
        left: 110%;
        top: 100%;
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
}

@keyframes shootAngle4 {
    0% {
        left: -10px;
        top: 0%;
        opacity: 0;
        transform: rotate(-25deg) scale(0);
    }
    10% {
        opacity: 1;
        transform: rotate(-25deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: rotate(-25deg) scale(1);
    }
    100% {
        left: 110%;
        top: 100%;
        opacity: 0;
        transform: rotate(-25deg) scale(0);
    }
}

/* Разные размеры звезд */
.shooting-star.small {
    width: 1px;
    height: 1px;
    animation-duration: 1.5s;
}

.shooting-star.medium {
    width: 2px;
    height: 2px;
    animation-duration: 2s;
}

.shooting-star.large {
    width: 3px;
    height: 3px;
    animation-duration: 2.5s;
}

/* Адаптивность */
@media (max-width: 768px) {
    .shooting-star {
        animation-duration: 1.5s;
    }
}
/*.main-header > * {
  position: relative;
  z-index: 2;
}*/

/*.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
    width: calc(100% - 64px);
}*/

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex: 1 1 auto;
  margin-top: 48px;
  min-height: 0;
    width: calc(100% - 64px);
}

.hero-left {
  max-width: 540px;
  margin-top: 101px;
}

.hero-tags {
  margin-bottom: 40px;
}
.tag {
  display: inline-block;
  color: #fff;
  border-radius: 20px;
  padding: 6px 18px;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 500;
      border: 1px solid #FFFFFF;
}

.hero-project {
  color: #E68B31;
  margin-bottom: 8px;
  font-family: Manrope;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: 0%;
}

.hero-title {
  margin: 8px 0 16px;
  font-family: Tektur;
  font-weight: 600;
  font-size: 70px;
  line-height: 112.99999999999999%;
  text-transform: uppercase;
}

.hero-desc {
  margin-bottom: 54px;
  font-family: Manrope;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
}

.main-btn-primary {
  background: #E68B31;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: Manrope;
  font-weight: 600;
  font-size: 18px;
  line-height: 127%;
  text-align: center;
}

.main-btn-primary:hover{
    background: #E68B31;
    text-decoration: none;
    color: #fff;
    /*transform: translateY(-3px);*/
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.hero-right {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.hero-illustration {
  width: 631px;
  max-width: 100%;
  height: auto;
  z-index: 1;
  /*position: absolute;*/
  /*bottom: -50px;*/
  /*right: -100px;*/
}

/*.hero-right::after{
  content: url("img/top_banner_vawe_bg.png");
  position: absolute;
  bottom: -29px;
}*/

/*.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #1a1533 100%);
  z-index: 3;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 90% 20%, 70% 0, 50% 20%, 30% 0, 10% 20%, 0 0);
}*/


.hero-drone {
    position: absolute;
    top: 10%;
    left: 21%;
    width: 300px;
    animation: droneFloat 6s ease-in-out infinite;
    z-index: 2;
}

.hero-satellite {
    position: absolute;
    top: 182px;
    right: 20%;
    width: 232px;
    animation: satelliteOrbit 8s ease-in-out infinite;
    z-index: 2;
}

.hero-robot {
    position: absolute;
    bottom: 5%;
    right: 50%;
    width: 200px;
    animation: robotGlow 4s ease-in-out infinite;
    z-index: 2;
}

.hero-children{
    display: none;
}

/* Анимация для дрона - плавное покачивание */
@keyframes droneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-16px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* Анимация для спутника - медленное вращение и покачивание */
@keyframes satelliteOrbit {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-5px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* Анимация для робота - мерцание */
@keyframes robotGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Дополнительные эффекты */
.hero-drone:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-satellite:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-drone {
        width: 150px;
        animation-duration: 8s; /* Замедляем на мобильных */
    }

    .hero-satellite {
        width: 100px;
        animation-duration: 10s;
    }

    .hero-robot {
        width: 120px;
        animation-duration: 6s;
    }
}

@media (max-width: 480px) {
    .hero-drone {
        width: 120px;
        top: 15%;
        left: 25%;
    }

    .hero-satellite {
        width: 80px;
        top: 200px;
        right: 15%;
    }

    .hero-robot {
        width: 100px;
        bottom: 10%;
        right: 45%;
    }
}






.about-section {
    /*background: url(img/bg_icon1.png) no-repeat 5% 33%, url(img/bg_blur1.png) no-repeat left 32%, url(img/bg_icon2.png) no-repeat 90% 60%, url(img/bg_blur2.png) no-repeat right 32%;*/
    background: url(img/bg_icon1.png) no-repeat 5% 33%, url(img/bg_icon2.png) no-repeat 90% 60%, url(img/bg_blur2.png) no-repeat right 32%;
    /*background-size: 6%, 33%, 6%, 33%;*/
    background-size: 6%, 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
}

.about-section .overflow-image-left{
    position: absolute;
    top: -70%;
    left: 0;
    width: 45%;
    z-index: -1;
}

.about-section .overflow-image-right {
    position: absolute;
    top: -130%;
    right: 0;
    width: 45%;
    z-index: -1;
}

.about-container {
  width: 100%;
}

.about-title {
  font-family: "Tektur", sans-serif;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-align: left;
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  text-transform: uppercase;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.about-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 8px solid #00927A;
  background: #00927A1A;
}

.about-card:nth-child(2) {
  border-left: 8px solid #E68B31;
  background: #E68B311A;
}

.about-card:nth-child(3) {
  border-left: 8px solid #9B40B7;
  background: #9B40B71A;
}

.about-card:nth-child(4) {
  border-left: 8px solid #2BAFCD;
  background: #2BAFCD1A;
}

.about-text{
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.about-icon img {
  width: 50px;
  height: 50px;
}

.about-btn-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 74px auto 0;
}

.about-btn {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 56px;
  padding: 14px 32px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
    justify-content: center;
  gap: 2px;
  width: fit-content;
}

.about-btn:hover{
    color: #fff;
    text-decoration: none;
}

/* Адаптивность для картинки с детьми */

@media (max-width: 1260px) {
    .header-logos {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
  .hero-illustration {
    width: 500px;
  }
  .hero-right::after {
    height: 100px;
  }
}

@media (max-width: 991px) {
    .header-logos img {
        height: 30px;
    }

    .hero-right{
        min-width: auto;
    }
}


@media (max-width: 767px) {
    .header-logos a:nth-child(2),.header-logos a:nth-child(3),.header-logos a:nth-child(4){
        display: none;
    }
    .hero-robot {
        bottom: 5%;
        right: 38%;
    }
    .hero-drone {
        top: -22%;
        left: 63%;
    }
    .hero-satellite {
        top: 0;
        left: 15%;
    }
    .main-header {
        background-image: url(img/mobile_top_banner_rectangle_children_bg2.png);
        border-radius: 0 0 42px 42px;
    }

    .hero-children{
        display: block;
        width: 100%;
    }
  .hero-illustration {
    width: 400px;
  }
  .hero-right::after {
    height: 80px;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
      width: 100%;
      padding: 0;
  }
  .hero-left {
    max-width: 100%;
    margin-bottom: 32px;
      padding: 0 78px;
      margin-top: 0px;
  }

    .header-top{
        gap: 20px;
    }

    .header-logos{
        justify-content: space-between;
        width: 100%;
    }

    .header-actions{
        order: 1;
        width: 100%;
        justify-content: flex-end;
    }

    .hero-title{
        font-size: 48px;
    }

    .hero-desc{
        font-size: 18px;
    }
    .about-btn-container{
        flex-wrap: wrap;
    }
    .about-btn{
        width: 100%;
    }
}

@media (max-width: 490px) {
    .hero-desc{
        font-size: 16px;
    }
    .hero-left{
        padding: 0 16px;
    }
  .hero-illustration {
    width: 300px;
  }
  .hero-right::after {
    height: 60px;
  }

    .header-top{
        gap: 45px;
        margin-top: 15px;
    }

    .header-logos{
        justify-content: space-between;
        width: 100%;
    }

    .header-actions{
        order: 1;
        width: 100%;
        justify-content: space-between;
        gap: 75px;
    }

    .main-header {
        background-image: url(img/top_banner_rectangle_bg.png);
    }

    .about-title {
        font-size: 34px;
    }

    .about-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-tags {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag {
        margin-right: 0;
    }

    .header-logos{
        flex-wrap: wrap;
    }

    .header-actions{
        flex-wrap: wrap;
        gap: unset;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }
}

/* Стили для блока Викторина */
.quiz-section {
    background: url(img/bg_icon4.png) no-repeat 5% 79%, url(img/bg_icon3.png) no-repeat 87% 22%;
    background-size: 9%, 3%;
  padding: 80px 0;
  position: relative;
}

.quiz-section .overflow-image-left {
    position: absolute;
    top: -25%;
    left: 0;
    width: 45%;
    z-index: -1;
}

.quiz-section .overflow-image-right {
    position: absolute;
    top: -42%;
    right: 0;
    width: 58%;
    z-index: -1;
}

/*.quiz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}*/

.quiz-header {
  text-align: center;
  margin-bottom: 60px;
}

.quiz-title {
  font-family: "Tektur", sans-serif;
  color: #FFDB67;
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 68px;
  text-align: center;
  text-transform: uppercase;

}

.quiz-subtitle {
  font-family: "Tektur", sans-serif;
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 68px;
  letter-spacing: 5%;
  text-align: center;
  text-transform: uppercase;
}

.quiz-card {
  background-image: url("img/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  display: flex;
  gap: 37px;
  position: relative;
  overflow: hidden;
}

.quiz-left {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-left: 22px;
}

.quiz-girl {
  position: relative;
  display: flex;
  justify-content: center;
}

.girl-image {
  width: 100%;
  max-width: 377px;
  height: auto;
  z-index: 2;
  position: relative;
}

.quiz-right {
  flex: 1;
  color: #fff;
  padding: 40px;
}

.quiz-intro {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

.quiz-features {
  margin-bottom: 40px;
}

.features-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #FFDB67;
  line-height: 127%;
}

.feature-icon {
  width: 39px;
  height: 49px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 24px;
  position: relative;
}

.features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 20px;
  font-weight: 600;
}

.quiz-prizes {
  margin-bottom: 40px;
  display: flex;
  gap: 17px;
}

.prizes-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #FFDB67;
}

.prize-icon {
    width: 88px;
    height: 71px;
    animation: prizeSwayCombined 4s ease-in-out infinite;
}

/* Анимация для призов - комбинированное движение */
@keyframes prizeSwayCombined {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) translateY(-3px) rotate(-2deg);
    }
    50% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateX(10px) translateY(-3px) rotate(2deg);
    }
}

.prizes-text {
  font-size: 18px;
  line-height: 130%;
  margin: 0;
  font-weight: 600;
  color: #FFDB67;
}

.quiz-btn {
  background: #E68B31;
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  padding: 16px 90px;
  font-size: 18px;
  line-height: 127%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;


  position: absolute;
  right: 0;
  bottom: 2px;
}

.quiz-btn:hover {
  transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

/* Адаптивность для блока Викторина */

@media (max-width: 1250px) {
    .quiz-btn{
        position: inherit;
        margin: 0 auto;
    }

    .quiz-card {
        background-image: url(img/banner-bg2.png);
        background-size: 115%;
    }
}

@media (max-width: 1100px) {
/*  .quiz-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }*/

  .quiz-left {
    flex: none;
  }

  .quiz-title {
    font-size: 32px;
  }

  .quiz-subtitle {
    font-size: 36px;
  }

    .quiz-section {
        padding-top: 0;
    }

    .quiz-intro{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .prizes-title{
        margin-bottom: 4px;
    }

}

@media (max-width: 991px) {
    .girl-image {
        max-width: 197px;
    }

    .quiz-card {
        gap: 0px;
        background-size: 148%;
    }
}

@media (max-width: 767px) {

  .quiz-card {
    padding: 30px;
      background-image: url(img/banner-bg3.png);
      flex-direction: column;
      background-size: 100% calc(100% - 100px); /* Убираем 50px снизу */
      background-position: top center;
  }

    .quiz-left{
        order: 2;
    }

    .quiz-right{
        padding: 0;
    }

    .girl-image {
        max-width: 90%;
        margin-bottom: 70px;
    }

    .info__join_button-button {
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
    }

    .quiz-btn {
        padding: 16px;
        width: 100%;
        justify-content: center;
        display: flex;
    }

  .quiz-title {
    font-size: 28px;
  }

  .quiz-intro {
    font-size: 20px;
  }

  .features-title,
  .prizes-title {
    font-size: 20px;
  }

  .features-list li,
  .prizes-text {
    font-size: 16px;
  }
}

@media (max-width: 490px) {
  .quiz-card {
    padding: 20px;
  }

  .quiz-title {
    font-size: 24px;
  }

    .quiz-subtitle {
        font-size: 34px;
        line-height: 42px;
    }

    .quiz-right {
        text-align: center;
    }


    .quiz-intro{
        line-height: 24px;
    }

    .girl-image {
        margin-bottom: 80px;
    }

    .features-title, .prizes-title {
        justify-content: center;
        font-size: 22px;
        line-height: 100%;
    }

    .quiz-prizes{
        flex-direction: column;
        align-items: center;
    }

    .features-title{
        flex-direction: column;
    }

    .feature-icon{
        width: 57px;
        height: 72px;
    }

    .features-list li::before{
       content: '';
    }

}

/* Стили для блока Достижения отечественной науки */
.achievements-section {
  backdrop-filter: blur(64px);
  background: rgba(43, 175, 205, 0.1);
  padding: 80px 0;
  position: relative;
}

/*.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}*/

.achievements-header {
  text-align: center;
  margin-bottom: 24px;
}

.achievements-title {
  font-family: "Tektur", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.achievements-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: Tektur;
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  border: 1px solid #00927A
}

.filter-btn:nth-child(2){
  border: 1px solid #E68B31;
}

.filter-btn:nth-child(3){
  border: 1px solid #2BAFCD;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.check-icon {
  width: 31px;
  height: 31px;
  filter: brightness(0) invert(1);
}

.videos-slider {
  position: relative;
  margin-bottom: 60px;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.video-slide {
  flex: 0 0 392px;
  padding: 0 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  min-width: 0;
}

.video-slide:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 392px;
  height: 300px;
}

.video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-slide:hover .video-image {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 16px 16px;
  z-index: 2;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E68B31;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #FFFFFF
}

.slider-arrow:hover {
  transform: scale(1.1);
}

/* Убираем стили для отключенных кнопок, так как при бесконечной прокрутке они всегда активны */

.video-slide {
  flex: 0 0 392px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

/* Адаптивность для слайдера с фиксированными размерами */
@media (max-width: 1200px) {
  .video-slide {
    flex: 0 0 392px;
  }
}

@media (max-width: 992px) {
  .video-slide {
    flex: 0 0 392px;
  }
}

@media (max-width: 768px) {
  .video-slide {
    flex: 0 0 392px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .video-slide {
    flex: 0 0 392px;
  }

  .video-thumbnail {
    width: 320px;
    height: 245px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    margin: 0 5px;
  }
}

/* ===== БЛОК МЕРОПРИЯТИЯ ===== */

.events-section {
  padding: 80px 0;
  position: relative;
  /*overflow: hidden;*/
    background: url(img/bg_icon6.png) no-repeat 11% 92%, url(img/bg_icon5.png) no-repeat 92% 17%, url(img/bg_blur.png) no-repeat center -75%;
    background-size: 5%, 10%, 50%;
}

.events-section .overflow-image-left {
    position: absolute;
    top: 2%;
    left: 0;
    width: 45%;
    z-index: -1;
}

.events-section .overflow-image-right {
    position: absolute;
    top: -72%;
    right: 0;
    width: 47%;
    z-index: -1;
}

/* Декоративные элементы */
/*.events-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 50px;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}*/

.events-section::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><rect x="30" y="30" width="40" height="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.events-header {
  text-align: center;
  margin-bottom: 60px;
}

.events-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: Tektur;
  line-height: 60px;
  letter-spacing: 5%;
  text-align: center;
}

.events-description {

  color: #fff;
  margin: 0 auto 30px;
  font-family: Tektur;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.events-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  padding: 13.5px 20px;
  border-radius: 60px;
  border: 1px solid #2BAFCD;
  font-family: Tektur;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.events-cta .check-icon {
  width: 31px;
  height: 31px;
  filter: none;
}

/* Контейнер карты */
.events-map-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}

/* Карта России */
.russia-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a4a6b 0%, #1e3a5f 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG карта */
.map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none; /* Позволяет кликать через object */
}

.map-svg svg{
    width: 100%;
}

/* Стили для регионов в SVG */
/* Стили для всех регионов карты */
.interactive-map path {
  fill: #2a4a6b;
  stroke: #1e3a5f;
  stroke-width: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

/* Hover эффект для всех регионов в интерактивной карте */
.interactive-map path:hover {
  fill: #4CAF50;
  stroke: #45a049;
  transform: scale(1.02);
}

/* Стили для всех регионов карты */
.map-svg path {
  fill: #B4C8FF99;
  stroke: #0A0019;
  stroke-width: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;

}

.map-svg .region {
  fill: #B4C8FF99;
  stroke: #0A0019;
  stroke-width: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto; /* Включаем клики для регионов */
}

/* Hover эффект для всех регионов */
.map-svg path:hover {
  fill: #B4C8FF;
  stroke: #0A0019;
}

.map-svg .region:hover {
  fill: #00927A;
  stroke: #0A0019;
}

.map-svg .region.active {
  fill: #00927A;
  stroke: #0A0019;
  stroke-width: 0.5;
}

.map-svg .region.highlighted {
  fill: #B4C8FF;
  stroke: #0A0019;
}

/* Информационные блоки регионов */
.region-info {
  position: absolute;
  z-index: 10;
}

.info-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 280px;
  position: relative;
}

.info-box::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 40px;
  background: #E68B31;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.info-date {
  font-size: 14px;
  font-weight: 600;
  color: #E68B31;
  margin-bottom: 4px;
}

.info-region {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.info-event {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Позиционирование информационных блоков */
.region-info[data-region="murmansk"] {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.region-info[data-region="moscow"] {
  top: 20%;
  left: 15%;
}

.region-info[data-region="kirov"] {
  top: 15%;
  right: 20%;
}

.region-info[data-region="karachay"] {
  top: 60%;
  left: 10%;
}

.region-info[data-region="ivanovo"] {
  top: 40%;
  left: 25%;
}

.region-info[data-region="komi"] {
  top: 5%;
  right: 10%;
}

.region-info[data-region="chuvashia"] {
  bottom: 20%;
  right: 15%;
}

.region-info[data-region="saratov"] {
  bottom: 30%;
  left: 30%;
}

/* Адаптивность для блока мероприятий */
@media (max-width: 1200px) {
  .events-map-container {
    height: 500px;
  }

  .info-box {
    max-width: 240px;
    padding: 14px 16px;
  }
}

@media (max-width: 992px) {
  .events-title {
    font-size: 36px;
  }

  .events-description {
    font-size: 16px;
  }

  .events-map-container {
    height: 400px;
  }

  .region-info[data-region="murmansk"] {
    top: 5%;
  }

  .region-info[data-region="moscow"] {
    top: 15%;
    left: 10%;
  }

  .region-info[data-region="kirov"] {
    top: 10%;
    right: 10%;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 60px 0;
  }

  .events-title {
    font-size: 34px;
  }

  .events-description {
    font-size: 14px;
    padding: 0 20px;
  }

  .events-cta {
    font-size: 14px;
    padding: 12px 20px;
  }

  .events-map-container {
    height: 350px;
  }

  .info-box {
    max-width: 200px;
    padding: 12px 14px;
  }

  .info-region {
    font-size: 14px;
  }

  .info-event {
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  .events-map-container {
    height: 300px;
  }

  .info-box {
    max-width: 180px;
    padding: 10px 12px;
  }

  .info-region {
    font-size: 12px;
  }

  .info-event {
    font-size: 11px;
  }

    .events-description{
        line-height: 24px;
    }
}

/* Адаптивность для блока Достижения */
@media (max-width: 1024px) {
  .achievements-title {
    font-size: 36px;
  }

  .filter-btn {
    min-width: 160px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 60px 0;
  }

  .achievements-title {
    font-size: 28px;
  }

  .achievements-filters {
    gap: 12px;
  }

  .filter-btn {
    min-width: 140px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .video-title {
    font-size: 14px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 490px) {
  .achievements-title {
    font-size: 34px;
  }

  .achievements-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
  }

  .video-slide {
    padding: 0 5px;
  }
}

/* Интерактивная карта с информационными блоками */
.interactive-map-container {
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
    margin: 40px 0;
}

.interactive-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Информационные блоки */
.info-blocks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.info-block {
    position: absolute;
    width: 176px;
    background: #3C3C64;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}


.info-block.highlighted {
    background: #00927A;
    border-color: #00b894;
    /*transform: scale(1.05);*/
}

.info-block .info-date {
    color: #E68B31;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-block .info-region {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.info-block .info-description {
    color: #b8c5d6;
    font-size: 12px;
    line-height: 1.3;
}

.info-region-name{
    font-size: 12px;
}

#info-murmansk{
    top: 1%;
    left: 19%;
}

#info-moscow{
    top: 18%;
    left: 6%;
}

#info-moscow::before {
    height: 88px;
    bottom: -89px;
}

#info-karachay{
    left: 0;
    top: 40%;
    width: 161px;
}

#info-karachay::before {
    height: 89px;
    bottom: -90px;
    left: 27%;
}

#info-ivanovo{
    left: 16%;
    top: 58%;
    z-index: 2;
}

#info-ivanovo::before {
    top: -110px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    left: 9%;
    height: 110px;
}

#info-chuvashia{
    left: 17%;
    top: 75%;
}

#info-chuvashia::before {
    top: -150px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    left: 9%;
    height: 150px;
}

#info-kirov{
    top: 28%;
    bottom: auto;
    left: 17%;
}

#info-kirov::before {

}

.map-svg .region[data-region=kirov] {
    fill: #B4C8FF;
}

#info-komi{
    left: 32%;
    top: 51%;
}

#info-komi::before {
    top: -80px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    left: 9%;
    height: 80px;
}

#info-saratov{
    top: 88%;
    left: 8%;
}

#info-saratov::before {
    top: -180px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    height: 180px;
}

/* Линии соединения */
.info-block::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 35px;
    background: linear-gradient(to top, transparent, #FFFFFF);
    bottom: -37px;
    left: 50%;
    transition: opacity 0.3s ease;
}

.info-block:hover::before {
    opacity: 1;
}



/* Стили для подсветки регионов на карте */
#interactive-map path.hover {
    fill: #00927A !important;
    stroke: #00927A !important;
    /*stroke-width: 2px !important;*/
    transition: all 0.3s ease;
}

/* Стили для подсветки информационных блоков */
.info-block.highlighted {
    background-color: #00927A66 !important;
    /*transform: scale(1.05);*/
    transition: all 0.3s ease;
}

.info-block.highlighted .info-region-name {
    color: white !important;
}

.info-block.highlighted .info-arrow {
    border-left-color: #00927A !important;
}

/* Плавные переходы для всех элементов */
#interactive-map path,
.info-block {
    transition: all 0.3s ease;
}

/*.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #00927A;
    background: #00927A66;
}*/


/* Адаптивность для информационных блоков */
@media (max-width: 768px) {
    .info-block {
        width: 150px;
        padding: 12px;
    }

    .info-block .info-region {
        font-size: 14px;
    }

    .info-block .info-description {
        font-size: 11px;
    }
}

/* Позиционирование блоков */
.info-block-top-left {
  top: 10%;
  left: 5%;
}

.info-block-left {
  top: 30%;
  left: 5%;
}

.info-block-bottom-left {
  bottom: 20%;
  left: 5%;
}

.info-block-right {
  top: 40%;
  right: 5%;
}

.info-block-top-right {
  top: 20%;
  right: 5%;
}

.info-block-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.info-block-bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* Блок НОВОСТИ */
.news-section {
  background-size: 50%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}



.news-section .main-container {
  position: relative;
  z-index: 2;
}

.news-title {
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-family: Tektur;
  line-height: 60px;
  letter-spacing: 5%;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
    background-size: 102%, cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(76, 175, 80, 0.3);
}

/* Фоновые изображения для карточек */
.news-card-1 {
  background: url('img/news1.svg');
  background-size: cover;
  background-position: center;
}

.news-card-2 {
  background: url('img/news2.svg');
  background-size: cover;
  background-position: center;
}

.news-card-3 {
  background: url('img/news3.svg');
  background-size: cover;
  background-position: center;
}

.news-card-4 {
  background: url('img/news4.svg');
  background-size: cover;
  background-position: center;
}

.news-date {
  background: #00927A;
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  width: fit-content;
    margin-bottom: 16px;
}

.news-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card-title {
  color: white;
  margin-bottom: 20px;
  font-family: Tektur;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 5%;
  text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-read-more {
  background: transparent;
  color: white;
  border: 1px solid #FFFFFF;
  padding: 16px;
  border-radius: 56px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.news-read-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

.news-actions {
  text-align: center;
}

.btn-all-news {
  background: #E68B31;
  color: white;
  border: none;
  padding: 18px 48px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Manrope;
}

.btn-all-news:hover {
    text-decoration: none;
    color: white;
  /*transform: translateY(-3px);*/
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.new-image{
    background-size: 102%, cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-noimage{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 35, 65, 0.8), rgba(0, 35, 65, 0.8));
}

/* Адаптивность для новостей */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }

  .news-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-card-title {
    font-size: 16px;
    line-height: 20px;
  }

  .btn-all-news {
    padding: 16px 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .news-title {
    font-size: 34px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card-title {
    font-size: 14px;
    line-height: 18px;
  }

  .btn-all-news {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* Блок ВОПРОСЫ */
.questions-section {
    background: url(img/bg_icon8.png) no-repeat 15% 96%, url(img/bg_icon7.png) no-repeat 90% 4%;
    background-size: 4%, 7%;
  padding: 80px 0 200px;
  position: relative;
}

.questions-section .overflow-image-left {
    position: absolute;
    top: -151%;
    left: 0;
    width: 30%;
    z-index: -1;
}

.questions-section .overflow-image-right {
    position: absolute;
    top: -72%;
    right: 0;
    width: 47%;
    z-index: -1;
}

.questions-title {
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-family: Tektur;
  line-height: 60px;
  letter-spacing: 5%;
}

.questions-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin: 0 auto;
}

/* Форма */
.questions-form {
  background: linear-gradient(278.85deg, rgba(2, 184, 225, 0.2) 11.27%, rgba(7, 104, 127, 0.2) 44.1%);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #2BAFCD80;
}

.form-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin:  0 0 43px;
  line-height: 140%;
  font-family: Tektur;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group textarea,
.form-group input {
  background: #FFFFFF;
  border: 1px solid #2BAFCD;
  border-radius: 20px;
  padding: 18px 20px;
  color: #231F2099;
  font-size: 18px;
  line-height: 140%;
  transition: all 0.3s ease;
  resize: vertical;
  font-weight: 500;
}

.form-group textarea::placeholder,
.form-group input::placeholder {
  color: #231F2099;
  font-family: Manrope;
}

.form-group textarea:focus,
.form-group input:focus {
  outline: none;
  border-color: #E68B31;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-label-text{
    flex: 1;
}

.checkbox-label-text a{
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #E68B31;
  border-color: #E68B31;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.privacy-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  margin-top: -10px;
}

.btn-submit {
  background: #E68B31;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 127%;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 43px auto 0;
  width: fit-content;
}

.btn-submit:focus{
    outline: none;
}

.btn-submit:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

/* FAQ */
.questions-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(278.85deg, rgba(2, 184, 225, 0.2) 11.27%, rgba(7, 104, 127, 0.2) 44.1%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #2BAFCD80
}

.faq-item:hover {
  border: 1px solid #E68B3180;
}

.faq-item.active {
  border: 1px solid #E68B3180;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question span{
  color: #E68B31;
}

.faq-question span{
  font-family: Tektur;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
}

.faq-arrow-btn {
  background: #E68B31;
  border: 1px solid #FFFFFF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.faq-arrow-btn:hover {
  background: #d17a2a;
  transform: scale(1.1);
}

.faq-arrow {
  width: 8px;
  height: 8px;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
  margin-top: -3px;
}

.faq-item.active .faq-arrow {
  transform: rotate(135deg);
  margin-top: 3px;
}

.faq-answer {
  padding: 0 54px 20px 20px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 24px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Адаптивность для блока вопросов */
@media (max-width: 900px) {
  .questions-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .questions-form,
  .questions-faq {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .questions-section {
    padding: 60px 0;
  }

  .questions-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .questions-form,
  .questions-faq {
    padding: 20px;
  }

  .form-title {
    font-size: 20px;
  }
}

@media (max-width: 490px) {
  .questions-title {
    font-size: 34px;
  }

  .questions-form,
  .questions-faq {
    padding: 15px;
  }

  .faq-question {
    padding: 15px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }

    .main-container{
        padding: 0 15px;
    }
}

/* Футер */
.pre-footer{
  display: flex;
  justify-content: center;
  background: url(img/footer_bg5.png);
  background-size: 99%;
  background-repeat: no-repeat;
    position: relative;
}
/*
.pre-footer img{
  position: relative;
  bottom: -7px;
}*/

.footer {
  background: url(img/footer_bg4.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.pre-footer .overflow-image-bottom {
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    z-index: -1;
}

.footer-top {
  /*background: url(img/footer_bg2.png);*/
  /*background-size: 100%;*/
  /*background-repeat: round;*/
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #FFFFFF66;
}

/*.footer-top::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  border-radius: 0 0 60% 60%;
  z-index: 1;
}*/

/* Логотипы */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 36px 0;
}

.logo-item {
  /*display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1;
  min-width: 120px;*/
}

.logo-text {
  color: white;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 130px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Навигация */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 127%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E68B31, #FFA726);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #E68B31;
  text-shadow: 0 0 10px rgba(230, 139, 49, 0.3);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #E68B31;
  text-shadow: 0 0 10px rgba(230, 139, 49, 0.3);
}

.nav-link.active::after {
  width: 100%;
}

/* Разделитель */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
  margin: 0;
  position: relative;
  z-index: 2;
}

.footer-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Нижняя часть футера */
.footer-bottom {
  padding: 30px 0;
  position: relative;
  z-index: 2;
  /*background: url(img/footer_bg3.png) repeat-y;*/
  /*background-size: cover;*/
}

.footer-bottom .main-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* Поддержка */
.footer-support {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  }
  to {
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
  }
}

.support-text {
  color: rgba(255, 255, 255, 0.95);
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 127%;
}

/* Контакты */
.footer-contacts {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-icon {

}

.contact-item:hover .contact-icon {
  color: #E68B31;
  filter: drop-shadow(0 0 5px rgba(230, 139, 49, 0.5));
}

.contact-text {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 127%;
}

@media (max-width: 2200px) {
  .pre-footer {
    background: url(img/footer_bg5.png) center;
    background-size: 155%;
    background-repeat: no-repeat;
      position: relative;
      top: 2px;
  }
}

@media (max-width: 1600px) {
    .pre-footer {
        top: 4px;
    }
}

@media (max-width: 1500px) {
  .pre-footer {
    background: url(img/footer_bg5.png) center;
    background-size: 170%;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1300px) and (max-width: 1370px) {
    .pre-footer {
        top: 7px;
    }
}

@media (max-width: 1300px){
    .pre-footer {
        background-size: 221%;
    }

    .pre-footer .overflow-image-bottom{
        top: -82%;
    }
}

@media (max-width: 1185px){
    .pre-footer .overflow-image-bottom{
        top: -62%;
    }
}

@media (max-width: 1040px){
    .pre-footer {
        top: 14px;
    }
}

@media (max-width: 991px){
    .pre-footer {
        background-size: 252%;
        background-position: 49.5%;
    }

    .pre-footer .overflow-image-bottom{
        top: -46%;
    }
}

/* Адаптивность для футера */

@media (max-width: 830px) {
    .footer-logos img{
        max-width: 100px;
    }
}

@media (max-width: 768px) {
  /*.footer-logos {
    justify-content: center;
    gap: 30px;
  }*/

  /*.logo-item {*/
  /*  flex: 0 0 calc(50% - 15px);*/
  /*}*/

  .footer-nav {
    gap: 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contacts {
    justify-content: center;
  }

    .pre-footer .overflow-image-bottom{
        top: -36%;
    }
}

@media (max-width: 700px) {
    .pre-footer{
        background: none;
    }

    .pre-footer .overflow-image-bottom {
        top: -15%;
    }
}

@media (max-width: 633px) {
    .pre-footer .overflow-image-bottom {
        top: 34%;
    }
}

@media (max-width: 570px) {
    .pre-footer .overflow-image-bottom {
        top: 45%;
    }
}

@media (max-width: 490px) {

  /*.footer-logos {
    flex-direction: column;
    gap: 20px;
  }*/

  .logo-item {
    flex: none;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 10px;
  }

    .footer .nav-link{
        text-align: center;
    }
}

@media (max-width: 459px) {
    .pre-footer .overflow-image-bottom {
        top: 58%;
    }
}
