@charset "UTF-8";
/* Reset и базовые стили */
/*
*:not(path):not(g) {
  color: hsla(210, 100%, 100%, 0.9) !important;
  background: hsla(210, 100%, 50%, 0.2) !important;
  outline: solid 1px hsla(0, 100%, 50%, 0.5) !important;
  box-shadow: none !important;
  filter: none !important;
}

// Additional debug styles for specific elements
div, section, article, header, footer, main, aside, nav, figure, figcaption {
  background: hsla(120, 100%, 25%, 0.1) !important;
  outline: solid 1px hsla(120, 100%, 25%, 0.4) !important;
  position: relative;

  &::before {
    content: attr(class);
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 4px;
    font-size: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    z-index: 9999;
  }
}

img, video, iframe {
  background: hsla(300, 100%, 25%, 0.1) !important;
  outline: solid 1px hsla(300, 100%, 50%, 0.4) !important;
}

a {
  background: hsla(60, 100%, 50%, 0.2) !important;
  outline: solid 1px hsla(60, 100%, 50%, 0.6) !important;
}

button, input, textarea, select {
  background: hsla(30, 100%, 50%, 0.2) !important;
  outline: solid 1px hsla(30, 100%, 50%, 0.6) !important;
}*/
body {
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Roboto Flex", sans-serif;
  font-variation-settings: "wght" 400, "wdth" 100;
}

.thin {
  font-variation-settings: "wght" 100;
}

.extra-bold {
  font-variation-settings: "wght" 800;
}

.condensed {
  font-variation-settings: "wdth" 75;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  min-height: 100vh;
}
body a {
  color: #2a9ddd;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header Styles */
body {
  padding-top: 120px;
}
@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}
body.index {
  padding-top: 140px;
}
@media (max-width: 991px) {
  body.index {
    padding-top: 60px;
  }
}

.header {
  width: 100%;
  background-color: #F1F5F6;
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #DEF0F9;
  /* Navigation */
  /* Мобильная версия */
}
.header-top {
  background-color: white;
  position: relative;
  z-index: 1001; /* Чтобы хедер был над меню */
}
.header a {
  color: #404040;
  text-decoration: none;
}
.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.header-content .logo-section {
  margin-right: auto;
}
.header-content .phone-section {
  margin-right: 0;
}
.header-content .cta-button {
  margin-right: 0;
  margin-left: 2rem;
}
.header .burger {
  display: none;
  cursor: pointer;
  margin-right: 16px;
  background: #DEF0F9;
  padding: 16px;
  min-width: 38px;
  height: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
}
.header .burger img {
  width: 24px;
  height: 24px;
}
.header .burger img:nth-child(1) {
  display: block;
}
.header .burger img:nth-child(2) {
  display: none;
}
.header .burger.active img:nth-child(1) {
  display: none;
}
.header .burger.active img:nth-child(2) {
  display: block;
}
.header .burger-close {
  display: none;
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1002;
}
.header .burger-close img {
  width: 24px;
  height: 24px;
}
.header .logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-decoration: none !important;
  color: #000;
}
.header .logo-section .logo {
  width: 170px;
  height: auto;
}
@media (max-width: 991px) {
  .header .logo-section .logo {
    display: none;
  }
}
.header .logo-section .logo-adapt {
  display: none;
}
@media (max-width: 991px) {
  .header .logo-section .logo-adapt {
    display: block;
  }
}
.header .logo-section .logo-text {
  font-size: 12px;
  color: #2E3442;
  line-height: 1.4;
}
.header .phone-section {
  border-left: 1px solid #DEF0F9;
  padding-left: 16px;
}
.header .phone-section .phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #4B5563;
}
.header .phone-section .phone-time {
  font-size: 14px;
  color: #979797;
}
.header .navigation {
  padding: 10px 0;
  background: #fff;
  border-top: 1px solid #DEF0F9;
}
.header .navigation .adapt {
  display: none !important;
}
@media (max-width: 991px) {
  .header .navigation .adapt {
    display: block !important;
  }
}
.header .navigation .flex-buts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .navigation .app-banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .header .navigation .app-banner-buttons {
    gap: 13.3328px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header .navigation .app-banner-buttons {
    gap: 10.6672px;
  }
}
.header .navigation .cta-button {
  display: none;
}
.header .navigation .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .navigation .nav-link {
  color: #979797;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .navigation .nav-link:hover {
  color: #2A9DDD;
}
.header .navigation .nav-link .icon {
  width: 16px;
  height: 16px;
}
.header .navigation .nav-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #2A9DDD;
  font-size: 16px;
}
.header .navigation .nav-address .icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 1024px) {
  .header {
    /* Показываем закрывающую кнопку только когда меню открыто */
  }
  .header .header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header .header-content .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; /* Первый элемент */
  }
  .header .header-content .logo-section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; /* Второй элемент */
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px;
    margin-left: -2rem;
    margin-right: auto;
  }
  .header .header-content .logo-section .logo-text {
    display: none;
  }
  .header .header-content .logo-section .logo {
    width: 100px; /* Чуть уменьшим лого на мобилках */
  }
  .header .header-content .logo-section .logo img {
    max-width: 100%;
  }
  .header .header-content .cta-button {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; /* Третий элемент */
    min-width: auto;
    padding: 10px;
    font-size: 10px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 8px;
  }
  .header .header-content .cta-button span {
    white-space: nowrap;
  }
  .header .header-content .phone-section {
    display: none;
  }
  .header .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 80px 20px 20px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header .navigation .text {
    font-size: 10px;
  }
  .header .navigation .text p {
    margin-bottom: 1rem;
  }
  .header .navigation .text p:last-child {
    margin-bottom: 0;
  }
  .header .navigation.active {
    left: 0;
  }
  .header .navigation .nav-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .header .navigation .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .header .navigation .nav-link {
    font-size: 12px;
    padding: 8px 0;
    width: 100%;
    color: #2a9ddd;
  }
  .header .navigation .nav-link a {
    display: block;
    width: 100%;
  }
  .header .navigation .nav-address {
    margin-top: auto;
    font-size: 16px;
    padding: 15px 0;
    width: 100%;
  }
  .header .navigation .cta-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .navigation .cta-button span {
    display: inline !important;
  }
  .header .navigation.active ~ .burger-close {
    display: block;
  }
}

.navigation.active .container {
  padding: 0;
}
.navigation.active .nav-link {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #DEF0F9;
}

/* Main Content */
.main {
  background-color: white;
  min-height: 100vh;
}

.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cta-button.primary {
  background-color: #60B822;
  color: white;
}
.cta-button.primary:hover {
  background-color: #5aa01f;
}
.cta-button .icon {
  width: 18px;
  height: 18px;
}

/* Hot Destinations */
.hot-destinations {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hot-destinations {
    margin-top: 10.6672px;
  }
}
.hot-destinations .destinations-container {
  background-color: #DEF0F9;
  padding: 16px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .hot-destinations .destinations-container {
    padding: 10.6672px;
    border-radius: 8.0004px;
    gap: 5.3336px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.hot-destinations .country-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: white;
  border: 1px solid #E7EDF9;
  border-radius: 12px;
  min-height: 40px;
  font-size: 14px;
  color: #1E1E1E;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
@media (max-width: 768px) {
  .hot-destinations .country-card {
    -ms-flex-preferred-size: calc(50% - 4px);
        flex-basis: calc(50% - 4px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 5.3336px;
    padding: 5.3336px 8.0004px;
    border-radius: 8.0004px;
    min-height: 26.668px;
    font-size: 9.3338px;
  }
}
.hot-destinations .country-card:hover {
  border-color: #2A9DDD;
}
.hot-destinations .country-card .flag {
  width: 33px;
  height: 24px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hot-destinations .country-card .flag {
    width: 22.0011px;
    height: 16.0008px;
    border-radius: 2.6668px;
  }
}
.hot-destinations .country-card.special {
  background-color: #FC9245;
  color: white;
  font-weight: 600;
  min-width: 240px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .hot-destinations .country-card.special {
    min-width: 160.008px;
  }
}
.hot-destinations .country-card.special:hover {
  background-color: #e8834a;
}
.hot-destinations .country-card.special .icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .hot-destinations .country-card.special .icon {
    width: 10.6672px;
    height: 10.6672px;
  }
}

/* Hero Section */
.hero {
  margin-top: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 16px 1fr;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
}
@media (max-width: 1200px) {
  .hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    margin-top: 10.6672px;
    gap: 10.6672px;
  }
}
.hero-main {
  position: relative;
}
.hero-content {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 36px;
  color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 24px;
    border-radius: 13.3328px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 16.0008px;
    border-radius: 10.6672px;
  }
}
.hero-content.with-overlay:before {
  background: rgba(0, 0, 0, 0.4901960784);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: " ";
}
.hero-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
    margin-bottom: 13.3328px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 18.6676px;
    margin-bottom: 10.6672px;
  }
}
.hero-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 630px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 15px;
    margin-bottom: 33.332px;
  }
}
@media (max-width: 480px) {
  .hero-description {
    font-size: 10.6672px;
    margin-bottom: 26.668px;
  }
}
.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    gap: 13.3328px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero-buttons {
    gap: 10.6672px;
  }
}
.hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .hero-button {
    padding: 9.9996px 19.9992px;
    border-radius: 9.9996px;
    font-size: 15px;
    gap: 6.6664px;
  }
}
@media (max-width: 480px) {
  .hero-button {
    padding: 8.0004px 16.0008px;
    border-radius: 8.0004px;
    font-size: 10.6672px;
    gap: 5.3336px;
  }
}
.hero-button.blue {
  background-color: #2A9DDD;
  color: white;
}
.hero-button.blue:hover {
  background-color: #2589c7;
}
.hero-button.green {
  background-color: #60B822;
  color: white;
}
.hero-button.green:hover {
  background-color: #5aa01f;
}
.hero-button .icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .hero-button .icon {
    width: 14.9994px;
    height: 14.9994px;
  }
}
@media (max-width: 480px) {
  .hero-button .icon {
    width: 12.0006px;
    height: 12.0006px;
  }
}
.hero-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .hero-pagination {
    gap: 2.6668px;
  }
}
.hero .pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 480px) {
  .hero .pagination-dot {
    width: 5.3336px;
    height: 5.3336px;
    border-radius: 8.0004px;
  }
}
.hero .pagination-dot.active {
  background-color: #2A9DDD;
}

/* Rating Card */
.rating-card {
  background-color: #F2F9FD;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
@media (max-width: 768px) {
  .rating-card {
    border-radius: 13.3328px;
  }
}
@media (max-width: 480px) {
  .rating-card {
    border-radius: 10.6672px;
  }
}
.rating-card .form-section_ {
  background-color: #F2F9FD;
  padding: 0;
}
.rating-card.index {
  padding: 24px;
}
@media (max-width: 768px) {
  .rating-card.index {
    padding: 19.9992px;
  }
}
@media (max-width: 480px) {
  .rating-card.index {
    padding: 16.0008px;
  }
}
.rating-card .rating-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .rating-card .rating-header {
    gap: 6.6664px;
    margin-bottom: 6.6664px;
  }
}
@media (max-width: 480px) {
  .rating-card .rating-header {
    gap: 5.3336px;
    margin-bottom: 5.3336px;
  }
}
.rating-card .hero-button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rating-card .rating-number {
  font-size: 40px;
  font-weight: 600;
  color: #2E3442;
}
@media (max-width: 768px) {
  .rating-card .rating-number {
    font-size: 33.332px;
  }
}
@media (max-width: 480px) {
  .rating-card .rating-number {
    font-size: 26.668px;
  }
}
.rating-card .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
@media (max-width: 480px) {
  .rating-card .stars {
    gap: 1.3334px;
  }
}
.rating-card .star {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .rating-card .star {
    width: 16.666px;
    height: 16.666px;
  }
}
@media (max-width: 480px) {
  .rating-card .star {
    width: 13.334px;
    height: 13.334px;
  }
}
.rating-card .rating-subtitle {
  color: #979797;
  font-size: 14px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .rating-card .rating-subtitle {
    font-size: 11.6662px;
    margin-bottom: 3.3332px;
  }
}
@media (max-width: 480px) {
  .rating-card .rating-subtitle {
    font-size: 9.3338px;
    margin-bottom: 2.6668px;
  }
}
.rating-card .rating-reviews {
  color: #2A9DDD;
  font-size: 14px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .rating-card .rating-reviews {
    font-size: 11.6662px;
    margin-bottom: 13.3328px;
  }
}
@media (max-width: 480px) {
  .rating-card .rating-reviews {
    font-size: 9.3338px;
    margin-bottom: 10.6672px;
  }
}
.rating-card .rating-testimonial {
  border-top: 1px solid #DEE6F6;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .rating-card .rating-testimonial {
    padding-top: 13.3328px;
  }
}
@media (max-width: 480px) {
  .rating-card .rating-testimonial {
    padding-top: 10.6672px;
  }
}
.rating-card .testimonial-text {
  color: #5B6477;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .rating-card .testimonial-text {
    font-size: 11.6662px;
    margin-bottom: 13.3328px;
  }
}
@media (max-width: 480px) {
  .rating-card .testimonial-text {
    font-size: 9.3338px;
    margin-bottom: 10.6672px;
  }
}
.rating-card .testimonial-author {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .rating-card .testimonial-author {
    font-size: 11.6662px;
    margin-bottom: 3.3332px;
  }
}
@media (max-width: 480px) {
  .rating-card .testimonial-author {
    font-size: 9.3338px;
    margin-bottom: 2.6668px;
  }
}
.rating-card .testimonial-date {
  color: #979797;
  font-size: 14px;
}
@media (max-width: 768px) {
  .rating-card .testimonial-date {
    font-size: 11.6662px;
  }
}
@media (max-width: 480px) {
  .rating-card .testimonial-date {
    font-size: 9.3338px;
  }
}

.best-prices-banner {
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 1440px;
  height: 100px;
  background-color: white;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .best-prices-banner {
    height: auto;
    padding: 24px 16px;
    margin-top: 13.3328px;
    margin-bottom: 13.3328px;
    border-radius: 9.9996px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner {
    padding: 16px 12px;
    margin-top: 10.6672px;
    margin-bottom: 10.6672px;
    border-radius: 8.0004px;
  }
}
.best-prices-banner .best-prices-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100%;
  gap: 40px;
}
@media (max-width: 768px) {
  .best-prices-banner .best-prices-container {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-prices-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .best-prices-banner .best-prices-container .best-price-item {
    width: 100%;
    max-width: 100%;
  }
}
.best-prices-banner .best-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 768px) {
  .best-prices-banner .best-price-item {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-price-item {
    padding: 0 12px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .best-prices-banner .best-price-item:last-child {
    grid-column: 1/-1;
    -ms-grid-column-align: center;
        justify-self: center;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-price-item:last-child {
    max-width: 100%;
  }
}
.best-prices-banner .best-price-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .best-prices-banner .best-price-header {
    gap: 12px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-price-header {
    gap: 8px;
    margin-bottom: 4px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.best-prices-banner .best-price-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .best-prices-banner .best-price-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-price-title {
    font-size: 14px;
    white-space: normal;
  }
}
.best-prices-banner .decorator-left,
.best-prices-banner .decorator-right {
  position: absolute;
  width: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .best-prices-banner .decorator-left,
  .best-prices-banner .decorator-right {
    width: 20px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .decorator-left,
  .best-prices-banner .decorator-right {
    width: 16px;
  }
}
.best-prices-banner .decorator-left {
  left: 0;
}
@media (max-width: 768px) {
  .best-prices-banner .decorator-left {
    left: -4px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .decorator-left {
    left: -2px;
  }
}
.best-prices-banner .decorator-right {
  right: 0;
}
@media (max-width: 768px) {
  .best-prices-banner .decorator-right {
    right: -4px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .decorator-right {
    right: -2px;
  }
}
.best-prices-banner .best-price-description {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .best-prices-banner .best-price-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .best-prices-banner .best-price-description {
    font-size: 12px;
  }
}

/* Section Headers */
.section-with-header {
  text-align: left;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .section-with-header {
    margin: 32px 0;
  }
}
@media (max-width: 480px) {
  .section-with-header {
    margin: 24px 0;
  }
}
.section-with-header .section-header {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section-with-header .section-header {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .section-with-header .section-header {
    margin-bottom: 8px;
  }
}
.section-with-header .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000;
  text-align: left;
}
@media (max-width: 768px) {
  .section-with-header .section-title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.25;
  }
}
@media (max-width: 480px) {
  .section-with-header .section-title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
}
.section-with-header .section-title.center {
  text-align: center;
}
.section-with-header .section-subtitle {
  color: #4B5563;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section-with-header .section-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.45;
  }
}
@media (max-width: 480px) {
  .section-with-header .section-subtitle {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
}
.section-with-header .section-link {
  color: #2A9DDD;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .section-with-header .section-link {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .section-with-header .section-link {
    font-size: 14px;
  }
}
.section-with-header .section-link:hover {
  text-decoration: underline;
}
.section-with-header .pagination-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .section-with-header .pagination-dots {
    margin-top: 12px;
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .section-with-header .pagination-dots {
    margin-top: 8px;
    gap: 2px;
  }
}

/* CTA Section */
.cta-section .cta-content {
  background-image: url("https://api.builder.io/api/v1/image/assets/f96df135c4fe40c8a7313e6005848e68/80a1485e226ce6808adc90886e570d60be8e57d7?placeholderIfAbsent=true");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 36px;
  color: white;
  min-height: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .cta-section .cta-content {
    padding: 24px;
    min-height: 340px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-content {
    padding: 18px;
    min-height: 280px;
    border-radius: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cta-section .cta-text {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cta-section .cta-text {
    max-width: 75%;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-text {
    max-width: 100%;
  }
}
.cta-section .cta-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-section .cta-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
}
.cta-section .cta-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cta-section .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.cta-section .cta-benefits {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cta-section .cta-benefits {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-benefits {
    margin-bottom: 20px;
  }
}
.cta-section .benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .cta-section .benefit-item {
    gap: 4px;
    margin-bottom: 6px;
  }
}
.cta-section .benefit-item .icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .cta-section .benefit-item .icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .cta-section .benefit-item .icon {
    width: 16px;
    height: 16px;
  }
}

/* How We Work */
.how-we-work {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .how-we-work {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .how-we-work {
    margin-top: 40px;
  }
}
.how-we-work .work-steps {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .how-we-work .work-steps {
    gap: 12px;
    margin-top: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 480px) {
  .how-we-work .work-steps {
    gap: 8px;
    margin-top: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.how-we-work .work-step {
  padding: 16px;
}
@media (max-width: 768px) {
  .how-we-work .work-step {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .how-we-work .work-step {
    padding: 10px;
  }
}
.how-we-work .step-number {
  width: 48px;
  height: 48px;
  background-color: #FC9245;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  margin: 0 auto 16px;
}
@media (max-width: 768px) {
  .how-we-work .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .how-we-work .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.how-we-work .step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}
@media (max-width: 768px) {
  .how-we-work .step-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .how-we-work .step-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.how-we-work .step-description {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .how-we-work .step-description {
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (max-width: 480px) {
  .how-we-work .step-description {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* Team Section */
.team-section {
  margin-top: 80px;
  background-color: #F2F9FD;
  padding: 40px;
  border-radius: 16px;
  padding-bottom: 1px;
}
@media (max-width: 768px) {
  .team-section {
    margin-top: 60px;
    padding: 30px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .team-section {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
  }
}
.team-section .team-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .team-section .team-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .team-section .team-header {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.team-section .team-text {
  max-width: 630px;
}
@media (max-width: 768px) {
  .team-section .team-text {
    max-width: 100%;
  }
}
.team-section .section-description {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .team-section .section-description {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .team-section .section-description {
    font-size: 14px;
    line-height: 1.4;
  }
}
.team-section .carousel-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .team-section .carousel-controls {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .team-section .carousel-controls {
    gap: 6px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
.team-section .carousel-button {
  width: 48px;
  height: 48px;
  background-color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .team-section .carousel-button {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .team-section .carousel-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.team-section .carousel-button:hover {
  background-color: #f0f0f0;
}
.team-section .carousel-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.team-section .team-swiper {
  overflow: hidden;
  margin-bottom: 16px;
  padding-bottom: 30px;
}
@media (max-width: 480px) {
  .team-section .team-swiper {
    margin-bottom: 12px;
    padding-bottom: 24px;
  }
}
.team-section .team-swiper .swiper-slide {
  height: auto;
}
.team-section .team-card {
  background-color: white;
  padding: 24px 16px;
  border-radius: 12px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .team-section .team-card {
    padding: 20px 12px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .team-section .team-card {
    padding: 16px 10px;
    border-radius: 8px;
  }
}
.team-section .team-card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.team-section .team-card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.team-section .team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .team-section .team-photo {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .team-section .team-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
  }
}
.team-section .team-name {
  font-size: 18px;
  font-weight: 600;
  color: #2E3442;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .team-section .team-name {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .team-section .team-name {
    font-size: 15px;
  }
}
.team-section .team-position {
  font-size: 14px;
  color: #5B6477;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .team-section .team-position {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .team-section .team-position {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.team-section .team-specialties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  height: 100px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  overflow: hidden;
}
@media (max-width: 768px) {
  .team-section .team-specialties {
    height: 90px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .team-section .team-specialties {
    height: 80px;
    margin-bottom: 12px;
    gap: 4px;
  }
}
.team-section .specialty {
  background-color: #F8FAFE;
  border: 1px solid #EDF2FD;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #1E1E1E;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .team-section .specialty {
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
  }
}
.team-section .team-stats {
  width: 100%;
  margin-bottom: 16px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .team-section .team-stats {
    margin-bottom: 12px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .team-section .team-stats {
    margin-bottom: 10px;
    height: 40px;
  }
}
.team-section .stat-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 12px;
}
@media (max-width: 480px) {
  .team-section .stat-line {
    gap: 4px;
  }
}
.team-section .stat-label,
.team-section .stat-value {
  font-size: 12px;
}
@media (max-width: 480px) {
  .team-section .stat-label,
  .team-section .stat-value {
    font-size: 11px;
  }
}
.team-section .team-button {
  background-color: #60B822;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
}
@media (max-width: 768px) {
  .team-section .team-button {
    padding: 8px 16px;
    font-size: 13px;
    height: 36px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .team-section .team-button {
    padding: 6px 12px;
    font-size: 12px;
    height: 32px;
    border-radius: 8px;
    gap: 4px;
  }
}
.team-section .team-button:hover {
  background-color: #5aa01f;
}
.team-section .team-button .icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .team-section .team-button .icon {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .team-section .team-button .icon {
    width: 12px;
    height: 12px;
  }
}
.team-section .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .team-section .swiper-pagination {
    margin-top: 16px;
  }
}
.team-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #D4DCEC;
  opacity: 1;
}
@media (max-width: 480px) {
  .team-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.team-section .swiper-pagination-bullet-active {
  background-color: #60B822;
}

/* App Banner */
.app-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, #4A9EE7 0%, #2A9DDD 100%);
  border-radius: 16px;
  padding: 40px;
  color: white;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
@media (max-width: 768px) {
  .app-banner {
    margin-top: 60px;
    padding: 30px;
    border-radius: 12px;
    min-height: 180px;
  }
}
@media (max-width: 480px) {
  .app-banner {
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: 10px;
    min-height: auto;
  }
}
.app-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.app-banner .app-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.app-banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  height: 100%;
}
@media (max-width: 768px) {
  .app-banner-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .app-banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.app-banner-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .app-banner-text {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .app-banner-text {
    margin-bottom: 0;
  }
}
.app-banner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .app-banner-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .app-banner-title {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.app-banner-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .app-banner-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .app-banner-subtitle {
    font-size: 14px;
  }
}
.app-banner .phone-mockup {
  position: absolute;
  left: 0;
  right: -18%;
  margin: 0 auto;
  bottom: -110%;
  pointer-events: none;
  z-index: 2;
  width: 200px;
}
@media (max-width: 768px) {
  .app-banner .phone-mockup {
    width: 180px;
    bottom: -90%;
  }
}
@media (max-width: 480px) {
  .app-banner .phone-mockup {
    position: relative;
    width: 140px;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.app-banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  z-index: 4;
}
@media (max-width: 768px) {
  .app-banner-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .app-banner-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 100%;
  }
}
.app-banner .app-store-button,
.app-banner .google-play-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: white;
  color: #2A9DDD;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .app-banner .app-store-button,
  .app-banner .google-play-button {
    padding: 10px 16px;
    font-size: 15px;
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .app-banner .app-store-button,
  .app-banner .google-play-button {
    min-width: calc(50% - 4px);
    padding: 8px 12px;
    font-size: 14px;
    gap: 6px;
  }
}
.app-banner .app-store-button:hover,
.app-banner .google-play-button:hover {
  background-color: #f8f9fa;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.app-banner .app-store-button .icon,
.app-banner .google-play-button .icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .app-banner .app-store-button .icon,
  .app-banner .google-play-button .icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .app-banner .app-store-button .icon,
  .app-banner .google-play-button .icon {
    width: 18px;
    height: 18px;
  }
}

/* Countries Section */
.countries-section {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .countries-section {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .countries-section {
    margin-top: 40px;
  }
}
.countries-section .countries-container {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 8px;
  margin-top: 24px;
  /* Стилизация скроллбара */
}
.countries-section .countries-container::-webkit-scrollbar {
  width: 6px;
}
.countries-section .countries-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.countries-section .countries-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.countries-section .countries-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.countries-section .countries-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .countries-section .countries-grid {
    gap: 12px;
    height: 40vh;
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .countries-section .countries-grid {
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.countries-section a {
  text-decoration: none !important;
}
.countries-section .country-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 52px;
}
@media (max-width: 768px) {
  .countries-section .country-item {
    padding: 10px;
    border-radius: 6px;
    min-height: 48px;
  }
}
@media (max-width: 480px) {
  .countries-section .country-item {
    padding: 8px;
    border-radius: 4px;
    gap: 6px;
    min-height: 44px;
  }
}
.countries-section .country-item:hover {
  border-color: #2A9DDD;
  -webkit-box-shadow: 0 2px 8px rgba(42, 157, 221, 0.1);
          box-shadow: 0 2px 8px rgba(42, 157, 221, 0.1);
}
.countries-section .country-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .countries-section .country-flag {
    width: 20px;
    height: 14px;
  }
}
.countries-section .country-name {
  font-size: 14px;
  color: #1E1E1E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .countries-section .country-name {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .countries-section .country-name {
    font-size: 12px;
  }
}

/* Testimonials Section */
.testimonials-section {
  margin-top: 80px;
  background-color: #F2F9FD;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  /* Swiper container */
  /* Testimonial Cards */
  /* Swiper pagination */
}
@media (max-width: 768px) {
  .testimonials-section {
    margin-top: 60px;
    padding: 30px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .testimonials-section {
    margin-top: 40px;
    padding: 24px 16px;
    border-radius: 10px;
  }
}
.testimonials-section .testimonials-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .testimonials-header {
    margin-bottom: 24px;
    gap: 16px;
  }
}
.testimonials-section .testimonials-text {
  max-width: 630px;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-text {
    max-width: 100%;
  }
}
.testimonials-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2E3442;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.testimonials-section .section-description {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .testimonials-section .section-description {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .testimonials-section .section-description {
    font-size: 14px;
    line-height: 1.4;
  }
}
.testimonials-section .carousel-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .testimonials-section .carousel-controls {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .testimonials-section .carousel-controls {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-top: 8px;
  }
}
.testimonials-section .carousel-button {
  width: 48px;
  height: 48px;
  background-color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .testimonials-section .carousel-button {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .carousel-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.testimonials-section .carousel-button:hover {
  background-color: #f0f0f0;
}
.testimonials-section .carousel-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonials-section .testimonials-swiper {
  overflow: hidden;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-swiper {
    padding-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .testimonials-swiper {
    padding-bottom: 32px;
  }
}
.testimonials-section .testimonials-swiper .swiper-slide {
  height: auto;
  padding: 5px;
}
.testimonials-section .testimonial-card {
  background-color: white;
  padding: 36px;
  border-radius: 12px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card {
    padding: 24px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-card {
    padding: 20px 16px;
    border-radius: 8px;
  }
}
.testimonials-section .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-stars {
    margin-bottom: 16px;
  }
}
.testimonials-section .testimonial-stars img {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-stars img {
    width: 16px;
    height: 16px;
  }
}
.testimonials-section .testimonial-text {
  color: #5B6477;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-text {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-text {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.4;
    padding-left: 16px;
  }
}
.testimonials-section .testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: rgba(96, 184, 34, 0.1);
  position: absolute;
  left: -10px;
  top: -20px;
  font-family: serif;
  line-height: 1;
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-text::before {
    font-size: 48px;
    left: -8px;
    top: -16px;
  }
}
.testimonials-section .testimonial-footer {
  margin-top: auto;
}
.testimonials-section .testimonial-author {
  color: #2E3442;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 4px;
  display: block;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-author {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-author {
    font-size: 14px;
  }
}
.testimonials-section .testimonial-title {
  color: #979797;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 480px) {
  .testimonials-section .testimonial-title {
    font-size: 13px;
  }
}
.testimonials-section .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
@media (max-width: 480px) {
  .testimonials-section .swiper-pagination {
    bottom: 8px;
  }
}
.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #D4DCEC;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .testimonials-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.testimonials-section .swiper-pagination-bullet-active {
  background-color: #60B822;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* Contact Section */
.contact-section {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 20px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  /* Contact Form */
}
@media (max-width: 1200px) {
  .contact-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .contact-section {
    margin-top: 53.33px;
    gap: 13.33px;
  }
}
.contact-section .contact-info {
  background-image: url("https://api.builder.io/api/v1/image/assets/f96df135c4fe40c8a7313e6005848e68/5f6420f1a1f7158647bdf1898220afdaca46a7bc?placeholderIfAbsent=true");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 36px;
  color: white;
  min-height: 454px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-section .contact-info {
    padding: 24px;
    min-height: 302.67px;
  }
}
@media (max-width: 480px) {
  .contact-section .contact-info {
    border-radius: 10.67px;
    padding: 24px 16px;
  }
}
.contact-section .contact-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .contact-section .contact-title {
    font-size: 21.33px;
    margin-bottom: 10.67px;
  }
}
.contact-section .contact-details {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .contact-section .contact-details {
    margin-bottom: 26.67px;
  }
}
.contact-section .contact-item {
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .contact-section .contact-item {
    margin-bottom: 10.67px;
  }
}
.contact-section .contact-label {
  font-size: 14px;
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .contact-section .contact-label {
    font-size: 9.33px;
    margin-bottom: 2.67px;
  }
}
.contact-section .contact-value {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
}
@media (max-width: 480px) {
  .contact-section .contact-value {
    font-size: 10.67px;
  }
}
.contact-section .contact-bottom {
  margin-top: auto;
}
.contact-section .contact-phone {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-section .contact-phone:hover {
  color: #e5e7eb;
}
@media (max-width: 768px) {
  .contact-section .contact-phone {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .contact-section .contact-phone {
    font-size: 21.33px;
    margin-bottom: 10.67px;
  }
}
.contact-section .contact-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 480px) {
  .contact-section .contact-socials {
    gap: 5.33px;
  }
}
.contact-section .social-button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .contact-section .social-button {
    width: 24px;
    height: 24px;
  }
}
.contact-section .social-button.blue {
  background-color: #3b82f6;
}
.contact-section .social-button.blue:hover {
  background-color: #2563eb;
}
.contact-section .social-button.green {
  background-color: #10b981;
}
.contact-section .social-button.green:hover {
  background-color: #059669;
}
.contact-section .contact-form {
  background-color: #F1F5F6;
  padding: 36px;
  border-radius: 12px;
  min-height: 454px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    min-height: 302.67px;
  }
}
@media (max-width: 480px) {
  .contact-section .contact-form {
    padding: 24px;
    border-radius: 8px;
  }
}
.contact-section .form-title {
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .contact-section .form-title {
    font-size: 13.33px;
    margin-bottom: 10.67px;
  }
}
.contact-section .form-group {
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .contact-section .form-group {
    margin-bottom: 5.33px;
  }
}
.contact-section .form-label {
  color: #979797;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  padding-left: 16px;
}
@media (max-width: 480px) {
  .contact-section .form-label {
    font-size: 9.33px;
    margin-bottom: 2.67px;
    padding-left: 10.67px;
  }
}
.contact-section .form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #C0E2F5;
  border-radius: 12px;
  background-color: white;
  font-size: 16px;
  color: #000;
}
@media (max-width: 480px) {
  .contact-section .form-input {
    padding: 10.67px;
    border-radius: 8px;
    font-size: 10.67px;
  }
}
.contact-section .form-input::-webkit-input-placeholder {
  color: #979797;
}
.contact-section .form-input::-moz-placeholder {
  color: #979797;
}
.contact-section .form-input:-ms-input-placeholder {
  color: #979797;
}
.contact-section .form-input::-ms-input-placeholder {
  color: #979797;
}
.contact-section .form-input::placeholder {
  color: #979797;
}
.contact-section .form-input:focus {
  outline: none;
  border-color: #2A9DDD;
}
.contact-section .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .contact-section .checkbox-group {
    gap: 10.67px;
    margin-top: 10.67px;
  }
}
.contact-section .form-checkbox {
  margin-top: 4px;
}
@media (max-width: 480px) {
  .contact-section .form-checkbox {
    margin-top: 2.67px;
  }
}
.contact-section .checkbox-label {
  font-size: 12px;
  color: #979797;
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 480px) {
  .contact-section .checkbox-label {
    font-size: 8px;
  }
}
.contact-section .checkbox-label .link {
  color: #2A9DDD;
}
.contact-section .form-submit {
  background-color: #2A9DDD;
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 480px) {
  .contact-section .form-submit {
    padding: 7.33px 16px;
    border-radius: 8px;
    font-size: 10.67px;
    margin-top: 10.67px;
  }
}
.contact-section .form-submit:hover {
  background-color: #2589c7;
}
.contact-section .form-note {
  color: #4B5563;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .contact-section .form-note {
    font-size: 9.33px;
    margin-top: 5.33px;
  }
}

.contact-section {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 20px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  .contact-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .contact-section {
    margin-top: 53.33px;
    gap: 13.33px;
  }
}

.contact-section_ .contact-form {
  background-color: #F1F5F6;
  padding: 36px;
  border-radius: 12px;
  min-height: 454px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .contact-section_ .contact-form {
    padding: 28px;
    border-radius: 10px;
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .contact-section_ .contact-form {
    padding: 20px;
    border-radius: 8px;
    min-height: auto;
  }
}
.contact-section_ .form-title {
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .contact-section_ .form-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .contact-section_ .form-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.contact-section_ .form-group {
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .contact-section_ .form-group {
    margin-bottom: 6px;
  }
}
.contact-section_ .form-label {
  color: #979797;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  padding-left: 16px;
}
@media (max-width: 480px) {
  .contact-section_ .form-label {
    font-size: 13px;
    padding-left: 12px;
  }
}
.contact-section_ .form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #C0E2F5;
  border-radius: 12px;
  background-color: white;
  font-size: 16px;
  color: #000;
}
@media (max-width: 768px) {
  .contact-section_ .form-input {
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-section_ .form-input {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
  }
}
.contact-section_ .form-input::-webkit-input-placeholder {
  color: #979797;
}
.contact-section_ .form-input::-moz-placeholder {
  color: #979797;
}
.contact-section_ .form-input:-ms-input-placeholder {
  color: #979797;
}
.contact-section_ .form-input::-ms-input-placeholder {
  color: #979797;
}
.contact-section_ .form-input::placeholder {
  color: #979797;
}
.contact-section_ .form-input:focus {
  outline: none;
  border-color: #2A9DDD;
}
.contact-section_ .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 16px;
}
@media (max-width: 480px) {
  .contact-section_ .checkbox-group {
    gap: 12px;
    margin-top: 12px;
  }
}
.contact-section_ .form-checkbox {
  margin-top: 4px;
}
.contact-section_ .checkbox-label {
  font-size: 12px;
  color: #979797;
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 480px) {
  .contact-section_ .checkbox-label {
    font-size: 11px;
    line-height: 1.3;
  }
}
.contact-section_ .checkbox-label .link {
  color: #2A9DDD;
}
.contact-section_ .form-submit {
  background-color: #2A9DDD;
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-section_ .form-submit {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-section_ .form-submit {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 12px;
    border-radius: 8px;
  }
}
.contact-section_ .form-submit:hover {
  background-color: #2589c7;
}
.contact-section_ .form-note {
  color: #4B5563;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .contact-section_ .form-note {
    font-size: 12px;
    margin-top: 6px;
  }
}

/* About Section */
.about-section {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1200px) {
  .about-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .about-section {
    margin-top: 60px;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .about-section {
    margin-top: 40px;
    gap: 20px;
  }
}
.about-section .about-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.about-section .about-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 1200px) {
  .about-section .about-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .about-section .about-title {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .about-section .about-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.about-section .about-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 480px) {
  .about-section .about-benefits {
    gap: 6px;
  }
}
.about-section .about-benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #F1F5F6;
  padding: 16px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .about-section .about-benefit {
    padding: 14px;
    border-radius: 10px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .about-section .about-benefit {
    padding: 12px;
    border-radius: 8px;
    gap: 8px;
  }
}
.about-section .about-benefit .icon {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .about-section .about-benefit .icon {
    width: 14px;
    height: 14px;
  }
}
.about-section .about-benefit p {
  color: #2E3442;
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .about-section .about-benefit p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .about-section .about-benefit p {
    font-size: 14px;
  }
}
.about-section .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .about-section .about-text {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .about-section .about-text {
    gap: 16px;
  }
}
.about-section .about-block {
  width: 100%;
}
.about-section .about-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
  text-align: left;
}
@media (max-width: 768px) {
  .about-section .about-subtitle {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .about-section .about-subtitle {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.about-section .about-description {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.4;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-section .about-description {
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (max-width: 480px) {
  .about-section .about-description {
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
  }
}

/* Fixed Contact Buttons */
.fixed-contacts {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  background-color: white;
  border: 1px solid #DEF0F9;
  padding: 8px;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.fixed-contact-button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed-contact-button.blue {
  background-color: #3b82f6;
}
.fixed-contact-button.blue:hover {
  background-color: #2563eb;
}
.fixed-contact-button.green {
  background-color: #10b981;
}
.fixed-contact-button.green:hover {
  background-color: #059669;
}

/* Footer */
.footer {
  background-color: #2A9DDD;
  margin-top: 80px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 60px;
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .footer {
    margin-top: 40px;
    padding: 24px 0;
  }
}
.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 992px) {
  .footer-content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .footer-content {
    gap: 32px;
  }
}
.footer-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 400px;
  max-width: 702px;
}
@media (max-width: 768px) {
  .footer-main {
    min-width: auto;
    max-width: 100%;
  }
}
.footer-logo {
  width: 152px;
  height: auto;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 130px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .footer-logo {
    width: 110px;
    margin-bottom: 20px;
  }
}
.footer-text {
  color: white;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .footer-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .footer-text {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 20px;
  }
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px;
}
@media (max-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .footer-apps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 8px;
  }
}
.footer .app-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: white;
  color: #2A9DDD;
  border: none;
  padding: 9px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .footer .app-button {
    padding: 8px 20px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .footer .app-button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
  }
}
.footer .app-button:hover {
  background-color: #f0f0f0;
}
.footer .app-button .icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 480px) {
  .footer .app-button .icon {
    width: 20px;
    height: 20px;
  }
}
.footer-payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media (max-width: 768px) {
  .footer-payments {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .footer-payments {
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer .payment-icon {
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .footer .payment-icon {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .footer .payment-icon {
    height: 24px;
  }
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 300px;
  width: 348px;
}
@media (max-width: 768px) {
  .footer-nav {
    min-width: auto;
    width: auto;
  }
}
.footer-cta {
  background-color: #60B822;
  color: white;
  border: none;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-bottom: 89px;
}
@media (max-width: 768px) {
  .footer-cta {
    margin-bottom: 40px;
    padding: 10px 16px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .footer-cta {
    margin-bottom: 32px;
    padding: 8px 12px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}
.footer-cta:hover {
  background-color: #5aa01f;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 480px) {
  .footer-links {
    gap: 12px;
  }
}
.footer-link {
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer-link {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .footer-link {
    font-size: 14px;
  }
}
.footer-link:hover {
  color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .nav-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .destinations-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .hero-content {
    padding: 24px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-content {
    padding: 24px;
  }
  .cta-text {
    max-width: 100%;
  }
  .cta-title {
    font-size: 32px;
  }
  .team-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .testimonials-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .contact-info {
    padding: 24px;
  }
  .contact-phone {
    font-size: 36px;
  }
  .about-title {
    font-size: 32px;
  }
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer-main {
    min-width: auto;
  }
  .footer-nav {
    min-width: auto;
    width: auto;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 28px;
  }
  .cta-title {
    font-size: 28px;
  }
  .about-title {
    font-size: 28px;
  }
  .contact-phone {
    font-size: 28px;
  }
  .app-banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .app-banner-phone {
    margin: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .phone-mockup {
    width: 150px;
    -webkit-transform: none;
            transform: none;
  }
  .app-banner-title {
    font-size: 28px;
  }
  .app-banner-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .app-store-button,
  .google-play-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.about-country {
  padding: 80px 0 20px;
}
.about-country h1, .about-country h2, .about-country h3, .about-country h4 {
  margin-bottom: 1rem;
}
.about-country p {
  margin-bottom: 1rem;
}

.country-resorts {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .country-resorts {
    margin: 32px 0;
  }
}
@media (max-width: 480px) {
  .country-resorts {
    margin: 24px 0;
  }
}
.country-resorts h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: #333;
}
@media (max-width: 768px) {
  .country-resorts h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .country-resorts h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.country-resorts .resorts-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 16px;
}
@media (max-width: 1200px) {
  .country-resorts .resorts-list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .country-resorts .resorts-list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .country-resorts .resorts-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }
}
.country-resorts .resorts-list .resort-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .country-resorts .resorts-list .resort-item {
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .country-resorts .resorts-list .resort-item {
    border-radius: 10px;
  }
}
.country-resorts .resorts-list .resort-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.country-resorts .resorts-list .resort-item a {
  text-decoration: none;
  display: block;
  color: #000;
}
.country-resorts .resorts-list .resort-item a .resort-image {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .country-resorts .resorts-list .resort-item a .resort-image {
    height: 200px;
  }
}
@media (max-width: 900px) {
  .country-resorts .resorts-list .resort-item a .resort-image {
    height: 180px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .country-resorts .resorts-list .resort-item a .resort-image {
    height: 160px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
}
.country-resorts .resorts-list .resort-item a .resort-name {
  padding: 0 16px 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .country-resorts .resorts-list .resort-item a .resort-name {
    font-size: 16px;
    padding: 0 12px 12px;
  }
}
@media (max-width: 480px) {
  .country-resorts .resorts-list .resort-item a .resort-name {
    font-size: 15px;
    padding: 0 8px 8px;
  }
}

.breadcrumbs {
  padding: 16px 0;
  font-size: 14px;
  background: #fff;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .breadcrumbs {
    padding: 8px 0;
    font-size: 12px;
  }
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #999;
}
@media (max-width: 768px) {
  .breadcrumbs li:not(:last-child)::after {
    margin: 0 6px;
  }
}
@media (max-width: 480px) {
  .breadcrumbs li:not(:last-child)::after {
    margin: 0 4px;
  }
}
.breadcrumbs li a {
  color: #0066cc;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.breadcrumbs li a:hover {
  color: #004499;
  text-decoration: underline;
}
.breadcrumbs li:last-child {
  color: #333;
  font-weight: 500;
}
.breadcrumbs li:last-child a {
  color: inherit;
  pointer-events: none;
}

.cta-button.primary {
  position: relative;
  overflow: hidden;
}
.cta-button.primary svg, .cta-button.primary img {
  position: relative;
  -webkit-transition: -webkit-transform 0.9s ease;
  transition: -webkit-transform 0.9s ease;
  transition: transform 0.9s ease;
  transition: transform 0.9s ease, -webkit-transform 0.9s ease;
  -webkit-animation: phoneRing 1.5s ease infinite;
          animation: phoneRing 1.5s ease infinite;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  bodrer: 0;
}
.cta-button.primary:hover svg, .cta-button.primary:hover img, .cta-button.primary:focus svg, .cta-button.primary:focus img {
  -webkit-transition: -webkit-transform 3s ease;
  transition: -webkit-transform 3s ease;
  transition: transform 3s ease;
  transition: transform 3s ease, -webkit-transform 3s ease;
}
.cta-button.primary:active svg, .cta-button.primary:active img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

@-webkit-keyframes phoneRing {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes phoneRing {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}