@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Slab:wght@100..900&display=swap');/* ����� */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: #000;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
  font-family: "Roboto Slab", serif;  font-optical-sizing: auto;
  height: -webkit-fill-available;

}

body {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
   min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* ��� */
.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease-out;
}




.hero-portrait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  z-index: 5;
  pointer-events: none;
  opacity: 1;

  /* Add fade-to-black effect using mask */
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

/* Overlay */
.overlay {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
}

.title {
  position: absolute; /* make it layer-aware */
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; /* must be > .hero::before z-index (which is 1) */
  display: flex;
  justify-content: center;
  gap: 20vw;
  
}


.letter {
  position: relative;        /* no longer absolute */
  font-size: 20vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -10px;
  opacity: 1;                /* show by default */
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}


.cta-button {
    position: relative;
    z-index: 4;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    background-color: white;
    color: black;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100%);
    animation: fadeInUp 1s ease-out 1.2s forwards; /* ���������� ����� ���� */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}


.animate-btn {
    animation: fadeInUp 1s ease-out 1.2s forwards; 
}

.hero-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.video-label {
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 1;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid white;
  border-radius: 50%;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}




.content {
    max-width: 1000px;
    margin: 0 auto;  
    background: black;
    padding: 60px 20px;
    z-index: -1;
}

.highlight-wrapper {
  position: absolute;
  left: 0;
  top: 60px; /* Adjust as needed */
  pointer-events: none;
}

.highlight-blur {
  width: 260px;
  height: 150px;
  background-color: #fd3ca9;
  filter: blur(100px);
  opacity: 1;
}


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(1.2);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.animate {
    animation: fadeSlideIn 1s ease-out forwards;
}

    .animate:nth-child(1) {
        animation-delay: 0.2s;
    }

    .animate:nth-child(2) {
        animation-delay: 0.4s;
    }

    .animate:nth-child(3) {
        animation-delay: 0.6s;
    }

    .animate:nth-child(4) {
        animation-delay: 0.8s;
    }


.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 4;
    position: relative;
    text-align: center;
    max-width: 90%;
}

.hero-info span {
    white-space: nowrap;
    font-weight: 400;
}

.hero-info .big {
    font-size: 1.6em;
    font-weight: bold;
}

.scroll-anim {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    z-index: 3;
}


.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0px;
  position: relative;
  color: #fff;
}

.content-wrapper {
  display: flex;
  align-items: center; /* Vertically center text and image */
  gap: 30px;            /* Reduced space between text and image */
  /* Removed flex-wrap */
}

.content-text {
  flex: 1 1 60%;
  position: relative;
}

.content-text h2 {
  font-size: 36px;
  margin: 20px 0px;
}

.highlight {
  color: #ffffff;
  background: linear-gradient(90deg, #ff5580, #ff3e7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheading {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.content-info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;

}



.content-image {
  position: relative;
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

.image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #ffffff; /* Gray text */
  background: transparent; /* No background */
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.4;
  text-align: right; /* Align text to the right */
  z-index: 5;
}

.image-caption .quote-icon {
  position: absolute;
  top: -35%;
  right: 0;
  font-size: 24px;
  color: #ffffff;
  z-index: 4;
  padding: 5px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.animate-info {
    opacity: 0;
    transform: translateY(100%);
    animation: fadeInUp 1s ease-out 1s forwards; /* Задержка 1с */
}

.for-whom-section {
    background: #000;
    text-align: center;
    color: white;
    padding: 60px 0px;
}

.for-whom-title {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.for-whom-title span {
    color: #ff3e7e;
}

.info-box {
    border: 1px solid #666;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  z-index: 2;
}

.course-info .info-box {
    border: 1px solid #666;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  z-index: 2;
}


.for-whom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 420px;
    text-align: left;
    line-height: 1.5;
}

.icon-circle {
    background: linear-gradient(135deg, #ff0000, #a733bb);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    /*! display: flex; */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /*! line-height: 1; */ /* prevents vertical misalignment */
    text-align: center;
}



.course-section {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  text-align: left;
}

.course-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.course-section .highlight {
  color: #ffffff;
  background: linear-gradient(90deg, #ff5580, #ff3e7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-section .subheading {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
}


.course-video-block {
  text-align: center;
  z-index: 2;
  position: relative;
}

.course-video-block .video-label {
  font-size: 18px;
  font-weight: 600;
  color: #999;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background: black;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 300px; /* Minimum height for the card */
    background: linear-gradient(90deg, #fd2f2f 0%, #ff3e7e 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(76, 42, 42, 0.5);
    max-width: 960px;
    margin: 0 auto;
}


.price-text {
    padding: 40px;
    width: 50%; /* Take half width */
    position: relative;
    z-index: 2;
}

.price-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.new-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.installment {
    font-size: 1rem;
    margin-bottom: 20px;
}

.asterisk {
    font-size: 1.5rem;
    vertical-align: super;
}

.preorder-button {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;       /* updated */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  text-align: center;
  line-height: 1.2;           /* prevents weird text spacing */
  transition: background-color 0.2s ease, color 0.2s ease;
}


.preorder-button:hover {
    background-color: white;
    color: black;
}

.note {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 10px;
}

.price-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%; /* Take full height of parent */
    width: auto; /* Width will adjust proportionally */
    max-width: 50%; /* Maximum half of card width */
    display: flex;
    align-items: flex-end; /* Align to bottom */
    justify-content: flex-end; /* Align to right */
}

.price-image img {
    height: 100%; /* Scale with container height */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Never exceed container */
    object-fit: contain; /* Maintain proportions */
    object-position: bottom right; /* Anchor to bottom-right */
}

.why-section .highlight-wrapper {
  top: -5%;
  left: 50%;
}

.why-section .info-item {
  display: none;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.why-section .info-item.active {
  display: flex;
}


.why-section .content-image,
.left-side {
  position: relative;
}

.why-section .content-image::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%; /* Adjust as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 10;
  pointer-events: none;
}

.image {
  z-index: 5;
}

.who .image::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%; /* Adjust as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 3;
  pointer-events: none;
}


.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.carousel-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-nav button:hover {
  background: rgba(255,255,255,0.2);
}

.gallery-section {
  background: black;
  color: white;
  text-align: center;
}

.gallery-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.image-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.grid-sizer {
  width: 24%; /* defines column width for masonry */
}

.gallery-item {
  width: 25%;
  margin-bottom: 10px;
  padding: 5px;
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.video-gallery {
  background-color: black;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.video-subtitle {
  font-size: 14px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-column {
  flex: 1 1 calc(33.333% - 20px); /* 3 per row with spacing */
  max-width: calc(33.333% - 20px);
}

.video-column video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.4s ease-in-out;
}

/* Nav buttons below the videos */
.video-nav-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.video-nav-row button {
  background: none;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-nav-row button:hover {
  background: rgba(255,255,255,0.2);
}

.modules {
  margin: 0px 40px;
}

.dropdown-module {
  border-top: 1px solid #444;
  padding: 20px 0;
}

.dropdown-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.dropdown-label .label-text {
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
  font-weight: normal;
}

.dropdown-label .icon {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 24px;
  line-height: 1;
}

.dropdown-module.open .dropdown-label .label-text,
.dropdown-module.open .dropdown-label .icon {
  color: #df3495;
}

.dropdown-module.open .dropdown-label .icon {
  transform: rotate(135deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin: 0px 60px;
  line-height: 24px;
}

.dropdown-content p {
  font-weight: bold;
}


.dropdown-content ul {
  padding-left: 25px;
}

.dropdown-module.open .dropdown-content {
  display: block;
  margin: 30px 60px
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preorder-section {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.preorder-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.preorder-info {
  font-size: 16px;
  margin-bottom: 30px;
}

.preorder-info strong {
  font-weight: bold;
}

.preorder-section .cta-button{
  margin: 0px 0px;
}

.preorder-btn:hover {
  background-color: #fd3ca9;
  color: #fff;
}


.footer {
    background-color: #000;
    color: white;
    padding: 40px 20px 120px; /* Снизу больше отступ */
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.footer-left,
.footer-center,
.footer-right {
    min-width: 250px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем по горизонтали */
}

.footer-question {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-question span {
    font-weight: normal;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    padding: 13px 21px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1;
    font-size: small;
}


.whatsapp-button:hover {
    background-color: #fd3ca9;
    color: white;
}

.footer-socials i {
    font-size: 24px;
    margin: 0px 10px 20px;
    color: white;
    transition: color 0.3s;
}

.footer-socials i:hover {
    color: #fd3ca9;
}



.footer-right a {
    display: block;
    margin-bottom: 6px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-right a:hover {
    text-decoration: none;
    color: #ccc;
}

.mobile {
  display: none;
}

.mobile-image {
  display: none;
  vertical-align: middle;
  height: 40px;
}


.reviews .review-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.reviews .review-row.reverse {
  flex-direction: row-reverse;
}

.reviews .review-video {
  flex: 0 0 280px;
  max-width: 280px;
  z-index: 3;
}

.reviews .review-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

.reviews .review-caption {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  font-size: 18px;
  color: #fff;
  text-align: left;
  z-index: 3;
}

.reviews .three-videos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.reviews .three-videos .video-item {
  flex: 1 1 180px;
  max-width: 200px;
  text-align: center;
}


.reviews .three-videos .video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

.reviews .caption-below {
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
}

.review-row .highlight-wrapper {
  left: 50%;
  top: 22%;
  z-index: 0;
}

.reverse .highlight-wrapper {
  top: 54%;
  left: 8%;
  z-index: 0;
}


@media (max-width: 768px) {
    .content-wrapper{
        display: block;
    }
  .why-section .info-box{
    padding-right: 25%;
  }

  .course-info .info-box{
    padding-right: 20%;
  }

  .carousel-wrapper {
  padding: 0px 60px 0px 0px;
}
  .for-whom-section {
    background: #000;
    text-align: center;
    color: white;
    padding: 0px 0px 110px 0px;
}
  .dropdown-module.open .dropdown-content {
  display: block;
  margin: 30px 0px;
}

  .modules {
    margin: 0px 0px;
  }

  .video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background: black;
  margin: auto auto 40px;
}

.reviews .three-videos {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.reviews .three-videos .video-item {
  flex: 0 0 auto;
  width: 180px;
  scroll-snap-align: start;
  text-align: center;
}

  .reviews .review-row {
    margin-bottom: 90px;
  }

  .video-grid {
    align-items: center;
  }

  .video-column {
      flex: 1 1 calc(50% - 10px); /* 2 per row */
      max-width: calc(50% - 10px);
    }

    .video-column:nth-child(3) {
    display: none;
  }

  .video-column video {
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .video-nav-row {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .video-gallery {
  padding: 40px 0px;
}

    .gallery-item {
        width: 50%;
        margin-bottom: 10px;
        padding: 5px;
        box-sizing: border-box;
    }

    .grid-sizer {
        width: 48%; /* defines column width for masonry */
    }

    .why-section .left-side {
        padding-right: 140px;
        z-index: 10;
    }

    .price-text {
        width: 100%;             /* Take full width */
        padding: 20px;           /* Optional: reduce padding on mobile */
    }

    .title {
        left: 53%;
        gap: 30vw;
    }

    .price-image{
        max-width: 17%;
    }

    .price-image img {
        left: 120%;
        position: relative;
    }

    .course-info{
        margin: 100px 0 100px 0;
    }

    .content-section.course-info .right-side {
        position: absolute;
        left: 43%;  /* Move image more to the left */
        right: auto; /* Override any right positioning */
        top: 24%;   /* Maintain vertical positioning */
        z-index: 1;
    }

    .content-text .highlight {
        padding: 0px 180px 0px 0px;
    }

.content-text h2 {
  font-size: 36px;
  margin: 20px 0px;
  padding-right: 40%;
  position: relative;
  z-index: 2;
}



    .right-side {
        position: absolute;
        right: -15px;
        top: 35%;
        transform: translateY(-50%);
    }
    .who .right-side {
  right: -25px;
}
      .right-side::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%; /* Adjust as needed */
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 10;
    pointer-events: none;
  }
    .left-side {
        padding-right: 60px; /* Prevents text overlap */
    }

    .content-image {
        display: none;
    }
    .content-section {
        padding: 0px 0px 120px;
    }

    .mobile {
        display: block !important;
    }

    .subheading.mobile {
        display: flex !important;
        align-items: center;
        gap: 10px;
        position: relative;  /* Enable z-index */
        z-index: 3;         /* Higher than the right-side image (z-index: 1) */
        margin-top: 20px;
        padding: 0 100px 0 0;
    }

    .mobile-image {
        min-height: 400px !important; /* Forces minimum height */
        object-fit: contain;        /* Prevents distortion */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px; /* Добавим отступы между блоками */
    }

    .footer-left,
    .footer-center,
    .footer-right {
        min-width: unset;
        width: 100%;
    }

    .footer-left {
        order: 1;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        order: 3;
    }

    .footer-socials a img {
        margin: 0 10px;
    }

    .footer-question {
        font-size: 16px;
    }

    .whatsapp-button {
        padding: 14px 20px 18px;
        font-size: 14px;
    }

    .footer-right a {
        font-size: 13px;
    }
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.section-title {
  background-color: #000; 
  color: #fff;            
  text-align: center;
  padding: 0px 20px 20px 20px;     
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'Georgia', serif; /* or your chosen serif font */
}
