.page,
.page * {
  box-sizing: border-box;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

menu,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


/* ========== APP BANNER SECTION ========== */

.app-desktop-banner-section {
  display: none;
}

.app-mobile-banner-section {
  display: none;
  position: relative;
  background: var(--fixed-secondaryfixed);
  gap: 16px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
}

.app-mobile-banner-section > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: var(--fixed-onsecondaryfixed);
  flex-grow: 1;
}

.app-mobile-banner-content {
  flex-grow: 1;
}

.app-mobile-banner-content h5 {
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
}

.app-mobile-banner-content span {
  font-family: var(--body-body-medium-font-family);
  font-size: var(--body-body-medium-font-size);
  line-height: var(--body-body-medium-line-height);
  font-weight: var(--body-body-medium-font-weight);
}


/* ========== COOKIES SECTION ========== */

.cookies-section {
  display: none;
  position: fixed;
  background: var(--light-surface);
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px;
  box-shadow: var(--floating-box-shadow);
}

.cookies-section img {
  width: 100px;
  height: 100px;
}

.cookies-section .line {
  border-color: var(--light-outlinevariant);
}

.cookies-section .button {
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-weight: var(--label-label-large-font-weight);
  line-height: var(--label-label-large-line-height);
  color: var(--light-onsurface);
}

.cookies-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.cookies-text span {
  font-family: var(--body-body-medium-font-family);
  font-size: var(--body-body-medium-font-size);
  font-weight: var(--body-body-medium-font-weight);
  line-height: var(--body-body-medium-line-height);
  color: var(--light-onsurfacevariant);
  text-align: center;
}

.cookies-text a {
  color: var(--light-primary);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-weight: var(--label-label-large-font-weight);
  line-height: var(--label-label-large-line-height);
}


/* ========== HERO SECTION ========== */

.hero-section {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--section-box-shadow);
  position: relative;
}

.hero-section-content {
  max-width: var(--max-content-width);
  width: 100%;
  padding: 24px 24px 80px 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 48, 64, 0.5);
  /* Semi-transparent dark layer */
  z-index: 1;
}

.hero-section-content>* {
  position: relative;
  /* Ensures the content is above the dark layer */
  z-index: 2;
}

.navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--fixed-secondaryfixed);
  width: 100%;
  position: relative;
  padding: 24px;
  z-index: 2;
}

.navigation-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  background: var(--fixed-secondaryfixed);
  gap: 32px;
  left: 20%;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 24px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;  
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--floating-box-shadow);
}

#close-mobile-menu {
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  cursor: pointer;
}

.navigation-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navigation .navigation-links {
  display: none;
}

.navigation-link {
  cursor: pointer;
  text-align: center;
  padding: 16px;
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-weight: var(--label-label-large-font-weight);
  line-height: var(--label-label-large-line-height);
}

.navigation-mobile .navigation-link {
  text-align: left;
}

.navigation-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--fixed-onsecondaryfixedvariant);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.button {
  cursor: pointer;
  border-radius: 32px;
  padding: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.sign-up-button-wrapper {
  border-radius: 32px;
  display: block;
  padding: 2px;
}

.sign-up-button-wrapper:hover,
.sign-up-button-wrapper:active {
  background: var(--linear-gradient-hover);
}

.sign-up-button {
  width: 100%;
  color: var(--fixed-onsecondaryfixed);
  background: var(--fixed-onsecondaryfixedvariant);
  font-size: var(--label-label-large-font-size);
  font-family: var(--label-label-large-font-family);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
}

.sign-up-button:active {
  background: var(--linear-gradient-active), var(--fixed-onsecondaryfixedvariant);
}

.sign-in-button {
  font-family: var(--label-label-large-font-family) !important;
  font-size: var(--label-label-large-font-size) !important;
  line-height: var(--label-label-large-line-height) !important;
  font-weight: var(--label-label-large-font-weight) !important;
}

.cta-button {
  color: var(--light-onprimary);
  background: var(--light-primary);
  font-size: var(--title-title-medium-font-size);
  font-family: var(--title-title-medium-font-family);
  font-weight: var(--title-title-medium-font-weight);
}

.cta-button:hover {
  background: var(--linear-gradient-hover);
}

.cta-button:active {
  background: var(--linear-gradient-active), var(--linear-gradient-hover);
}

.cta-button-chevron {
  padding: 16px 16px 16px 26px;
}

.chevron-right {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.mobile-menu-button {
  display: inline-block;
  cursor: pointer;
}

.navigation-mobile .authentication-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.navigation .authentication-buttons {
  display: none;
}

.footer .authentication-buttons {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.start {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.start-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  text-align: center;
  position: relative;
}

.start-text #subtitle {
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
}

.start-text #title {
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--title-title-large-font-family);
  font-size: var(--title-title-large-font-size);
  line-height: var(--title-title-large-line-height);
  font-weight: var(--title-title-large-font-weight);
}

.lime-gradient-text {
  background: var(--linear-gradient-lime);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.feature-item {
  background: rgba(96, 99, 122, 0.2);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  backdrop-filter: blur(14px);
}

.feature-item img {
  width: auto;
  height: 48px;
  position: relative;
  overflow: visible;
  filter: drop-shadow(0px 0px 32px var(--fixed-tertiaryfixed));
}

.feature-item-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--headline-headline-medium-font-family);
  font-size: var(--headline-headline-medium-font-size);
  line-height: var(--headline-headline-medium-line-height);
  font-weight: var(--headline-headline-medium-font-weight);
  position: relative;
}

.feature-item-subtitle {
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  position: relative;
}

/* ========== TESTIMONIAL SECTION ========== */

.testimonial-section {
  width: 100%;
  background: var(--light-primary);
  background-image: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.5) 0%, var(--light-primary));
  position: relative;
}

.testimonial-section-content {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 24px 80px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.testimonial-section h1 {
  color: var(--light-onprimary);
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider-content {
  display: flex;
  flex-direction: row;
  gap: var(--testimonial-card-gap);
  padding: 24px 0px 24px 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: var(--testimonial-slider-content-width-mobile);
  overflow: hidden;
}

.testimonial-card {
  pointer-events: none;
  cursor: default;
  background: var(--light-surface);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  width: var(--testimonial-card-width-mobile);
  height: var(--testimonial-card-height);
  opacity: 0.6;
  transform: scale(0.85);
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
}

.testimonial-card-active {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.testimonial-avatar {
  background: var(--light-secondary);
  color: var(--light-onsecondary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-family: var(--headline-headline-large-font-family);
  font-size: var(--headline-headline-large-font-size);
  line-height: var(--headline-headline-large-line-height);
  letter-spacing: var(--headline-headline-large-letter-spacing);
  font-weight: var(--headline-headline-large-font-weight);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.testimonial-title {
  color: var(--light-onsurface);
  font-family: var(--title-title-large-font-family);
  font-size: var(--title-title-large-font-size);
  line-height: var(--title-title-large-line-height);
  font-weight: var(--title-title-large-font-weight);
  position: relative;
}

.testimonial-review {
  color: var(--light-onsurfacevariant);
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  overflow: hidden;
  /* Hides overflowing text */
  display: -webkit-box;
  /* Enables multi-line ellipsis */
  line-clamp: 3;
  -webkit-line-clamp: 3;
  /* Limits text to 3 lines */
  -webkit-box-orient: vertical;
  /* Specifies vertical orientation for the box */
  position: relative;
  align-self: stretch;
}

.testimonial-rate {
  flex-shrink: 0;
  width: auto;
  height: 20px;
  position: relative;
  overflow: visible;
}

.testimonial-origin {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  color: var(--light-onsurface);
  font-family: var(--label-label-medium-font-family);
  font-size: var(--label-label-medium-font-size);
  line-height: var(--label-label-medium-line-height);
  letter-spacing: var(--label-label-medium-letter-spacing);
  font-weight: var(--label-label-medium-font-weight);
  position: relative;
}

.testimonial-button {
  cursor: pointer;
  background: var(--light-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  position: absolute;
  box-shadow: var(--floating-box-shadow);
}

#testimonial-button-left {
  top: 50%;
  left: 112px;
  transform: translateY(-50%) rotate(180deg);
}

#testimonial-button-right {
  right: 112px;
  top: 50%;
  transform: translateY(-50%);
}

#testimonial-button-left:hover,
#testimonial-button-left:active {
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

#testimonial-button-right:hover,
#testimonial-button-right:active {
  transform: translateY(-50%) scale(1.1);
}

#testimonial-button-left:active {
  background: var(--light-surfacecontainer);
}

#testimonial-button-right:active {
  background: var(--light-surfacecontainer);
}

/* ========== DISCOUNT SECTION ========== */

.discount-section {
  width: 100%;
  background: var(--fixed-secondaryfixed);
  z-index: 1;
  box-shadow: var(--section-box-shadow);
}

.discount-section-content {
  padding: 80px 24px 80px 24px;
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  max-width: var(--max-content-width);
}

.discount-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  flex: 1;
  position: relative;
}

.discount-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.discount-title {
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
}

.discount-subtitle {
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  font-weight: var(--body-body-large-font-weight);
}

.discount-image {
  flex: 1;
  width: 100%;
  height: auto;
  position: relative;
  object-fit: contain;
}

/* ========== STEPS SECTION ========== */

.steps-section {
  width: 100%;
  background: var(--light-surface);
  position: relative;
}

.steps-section-content {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 24px 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.steps-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.steps-title {
  color: var(--light-onsurface);
  text-align: center;
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
  position: relative;
  align-self: stretch;
}

.steps-subtitle {
  color: var(--light-onsurfacevariant);
  text-align: center;
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  font-weight: var(--body-body-large-font-weight);
  position: relative;
  align-self: stretch;
}

.text-highlight {
  color: var(--light-primary);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.step-item {
  background: var(--light-surfacecontainer);
  border-radius: 32px;
  padding: 32px;
  gap: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.step-item-number {
  color: var(--light-onsurface);
  font-family: var(--display-display-large-font-family);
  font-size: var(--display-display-large-font-size);
  line-height: var(--display-display-large-line-height);
  letter-spacing: -1px;
  font-weight: var(--display-display-large-font-weight);
  position: relative;
}

.step-item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.step-item-title {
  color: var(--light-onsurface);
  text-align: left;
  padding-top: 2px;
  padding-bottom: 2px;
  font-family: var(--headline-headline-medium-font-family);
  font-size: var(--headline-headline-medium-font-size);
  line-height: var(--headline-headline-medium-line-height);
  font-weight: var(--headline-headline-medium-font-weight);
  position: relative;
  align-self: stretch;
  text-overflow: ellipsis;
  overflow: hidden;
}

.step-item-subtitle {
  color: var(--light-onsurfacevariant);
  text-align: left;
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  position: relative;
  align-self: stretch;
}

.step-item-active {
  background: var(--fixed-secondaryfixed);
  box-shadow: var(--floating-box-shadow)
}

.step-item-active .step-item-number {
  background: var(--linear-gradient-lime);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-item-active .step-item-title,
.step-item-active .step-item-subtitle {
  color: var(--fixed-onsecondaryfixed) !important;
}

/* ========== COUNTRY SECTION ========== */

.country-section {
  width: 100%;
  background: var(--fixed-secondaryfixed);
  position: relative;
  box-shadow: var(--section-box-shadow);
}

.country-section-content {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 80px 24px 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  box-shadow: var(--section-box-shadow);
}

.country-text {
  display: flex;
  flex-direction: column;
  color: var(--fixed-onsecondaryfixed);
  gap: 16px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.country-title {
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
}

.country-subtitle {
  font-family: var(--title-title-medium-font-family);
  font-size: var(--title-title-medium-font-size);
  line-height: var(--title-title-medium-line-height);
  font-weight: var(--title-title-medium-font-weight);
}

.country-carousel {
  display: flex;
  flex-direction: row;
  gap: 48px;
  padding-bottom: 16px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  flex-wrap: wrap;
}

.country-currency {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 180px;
  overflow: hidden;
}

.country-currency-image {
  border-radius: 50%;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  position: relative;
  object-fit: cover;
}

.country-currency-text {
  display: flex;
  flex-direction: column;
  color: var(--fixed-onsecondaryfixed);
  gap: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.country-currency-id {
  font-family: var(--title-title-large-font-family);
  font-size: var(--title-title-large-font-size);
  line-height: var(--title-title-large-line-height);
  font-weight: var(--title-title-large-font-weight);
  position: relative;
}

.country-currency-name {
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  position: relative;
}

/* ========= MAP SECTION ========== */

.map-section {
  width: 100%;
  background: var(--light-surface);
  position: relative;
}

.map-section-content {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  background: var(--light-surface);
  padding: 80px 0px 80px 0px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.map-title {
  color: var(--light-onsurface);
  padding: 0 24px;
  text-align: center;
  font-family: var(--display-display-small-font-family);
  font-size: var(--display-display-small-font-size);
  line-height: var(--display-display-small-line-height);
  font-weight: var(--display-display-small-font-weight);
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  position: relative;
  object-fit: contain;
}

.footer {
  background: var(--fixed-secondaryfixed);
  padding: 48px 24px 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.footer-first-part {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--fixed-onsecondaryfixed) var(--fixed-secondaryfixed);
}

.footer-havaneo {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.footer-havaneo > .footer-social {
  display: none;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-menu a {
  text-decoration: none;
  color: var(--light-outline);
  font-family: var(--title-title-medium-font-family);
  font-size: var(--title-title-medium-font-size);
  line-height: var(--title-title-medium-line-height);
  font-weight: var(--title-title-medium-font-weight);
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.footer-menu a:not(:first-child) {
  font-family: var(--body-body-medium-font-family);
  font-size: var(--body-body-medium-font-size);
  line-height: var(--body-body-medium-line-height);
  font-weight: var(--body-body-medium-font-weight);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: end;
  align-self: stretch;
  position: relative;
  white-space: nowrap;
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
}

.footer-developer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative;
  text-wrap: nowrap;
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
  color: var(--light-onsurfacevariant);
}

.footer .line {
  border-color: var(--fixed-onsecondaryfixedvariant);
}

.line {
  margin-top: -1px;
  border-style: solid;
  border-width: 1px;
  align-self: stretch;
  position: relative;
}

.footer-second-part {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  color: var(--fixed-onsecondaryfixed);
}

.footer-title {
  font-family: var(--headline-headline-medium-font-family);
  font-size: var(--headline-headline-medium-font-size);
  line-height: var(--headline-headline-medium-line-height);
  letter-spacing: var(--headline-headline-medium-letter-spacing);
  font-weight: var(--headline-headline-medium-font-weight);
  position: relative;
  align-self: stretch;
}

.footer-subtitle {
  font-family: var(--body-body-medium-font-family);
  font-size: var(--body-body-medium-font-size);
  line-height: var(--body-body-medium-line-height);
  letter-spacing: var(--body-body-medium-letter-spacing);
  font-weight: var(--body-body-medium-font-weight);
  position: relative;
  align-self: stretch;
}

.footer-third-part {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: relative;
}

.footer-fourth-part {
  color: var(--light-onsurfacevariant);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.app-store-badge {
  height: 40px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.google-play-badge {
  height: 40px;
  width: 135px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-link {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.facebook-link {
  background-image: url(/images/facebook-icon-default.svg);
}

.facebook-link:hover {
  background-image: url(/images/facebook-icon-active.svg);
}

.instagram-link {
  background-image: url(/images/instagram-icon-default.svg);
}

.instagram-link:hover {
  background-image: url(/images/instagram-icon-active.svg);
}

.language-selector-wrapper {
  display: flex;
  justify-content: center;
  align-self: stretch;
  flex: 1;
}

.language-selector {
  border-radius: 24px;
  border-style: solid;
  border-color: var(--fixed-onsecondaryfixedvariant);
  border-width: 1px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: left;
  cursor: pointer;
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--label-label-medium-font-family);
  font-size: var(--label-label-medium-font-size);
  line-height: var(--label-label-medium-line-height);
  letter-spacing: var(--label-label-medium-letter-spacing);
  font-weight: var(--label-label-medium-font-weight);
}

.language-selector:hover {
  border-color: var(--fixed-onsecondaryfixed);
}

.language-selector:active {
  background: var(--fixed-onsecondaryfixedvariant);
}

.language-selector img:first-child {
  transition: transform 0.3s ease-in-out;
}

.language-selector img:last-child {
  margin-left: 8px;
}

.language-flag {
  height: 32px;
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.language-options {
  display: flex;
  width: 256px;
  color: var(--fixed-onsecondaryfixed);
  font-family: var(--label-label-medium-font-family);
  font-size: var(--label-label-medium-font-size);
  line-height: var(--label-label-medium-line-height);
  letter-spacing: var(--label-label-medium-letter-spacing);
  font-weight: var(--label-label-medium-font-weight);
  background: var(--fixed-secondaryfixed);
  border-radius: 24px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  bottom: 64px;
  position: absolute;
  box-shadow: var(--floating-box-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease-in;
}

.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(0) !important;
}

.language-option {
  display: flex;
  cursor: pointer;
  padding: 8px 16px 8px 16px;
  border-radius: 16px;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.language-option:hover {
  background: var(--fixed-onsecondaryfixedvariant);
}

.language-option img:last-child {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
}

.spacer-20px {
    height: 20px;
}

/* ============ CONTACT US ============ */

.contact-us-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.contact-us-option {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--fixed-secondaryfixed);
}

#contact-email:hover {
    background: var(--linear-gradient-hover);
}

#contact-whatsapp:hover {
    background: var(--linear-gradient-lime);
}

#contact-phone:hover {
    background: var(--linear-gradient-blue);
}

.contact-us-options > .contact-us-option > p {
    padding: 0;
    flex: 1;
    color: var(--light-onprimary);
}

.contact-us-options > .contact-us-option > img {
  width: 24px;
  height: 24px;
}

/* ============ RESPONSIVE STYLES ============ */
/* This section contains styles that are applied when the viewport width is 768px or more. */

@media (min-width: 768px) {
  .app-mobile-banner-section {
    display: none;
  }

  .app-desktop-banner-section {
    display: none;
    position: fixed;
    background: var(--light-surface);
    border-radius: 16px;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: auto;
    right: auto;
    margin: 24px;
    padding: 16px;
    z-index: 3;
    box-shadow: var(--floating-box-shadow);
  }

  .app-desktop-banner-section .line {
    color: var(--light-outlinevariant);
  }

  .app-desktop-banner-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
    justify-content: center;
    text-align: center;
  }

  .app-desktop-banner-content a {
    display: inline-block;
  }

  .app-desktop-banner-section h5,
  .app-desktop-banner-section button {
    color: var(--light-onsurface);
    font-family: var(--label-label-large-font-family);
    font-size: var(--label-label-large-font-size);
    line-height: var(--label-label-large-line-height);
    font-weight: var(--label-label-large-font-weight);
  }

  .cookies-section {
    flex-direction: row;
    gap: 16px;
    border-radius: 16px;
    bottom: 0;
    right: auto;
    left: auto;
    margin: 24px;
  }

  .cookies-text {
    max-width: 512px;
    align-items: flex-start;
  }
  
  .cookies-text span {
    text-align: start;
  }

  .hero-section-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .navigation {
    padding: 24px 48px 24px 48px;
    gap: 24px;
  }

  .mobile-menu-button {
    display: none;
  }

  .logo {
    flex: 1;
    justify-content: flex-start;
  }

  .navigation .authentication-buttons {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    position: relative;
  }

  .navigation-links {
    justify-content: flex-start;
    flex-direction: row;
    gap: 32px;
    white-space: nowrap;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--fixed-onsecondaryfixed) var(--fixed-secondaryfixed);
  }

  .navigation .navigation-links {
    display: flex;
  }

  .footer .navigation-links {
    transform: translateX(-16px);
    gap: 16px;
  }

  .navigation-links::-webkit-scrollbar {
    width: 8px; /* Match 'thin' width */
    height: 8px; /* For horizontal scrollbars */
  }

  .navigation-links::-webkit-scrollbar-thumb {
    background-color: var(--fixed-onsecondaryfixed); /* Match scrollbar thumb color */
    border-radius: 4px; /* Add rounded corners for consistency */
  }

  .navigation-links::-webkit-scrollbar-track {
    background-color: var(--fixed-secondaryfixed); /* Match scrollbar track color */
  }
  .start {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .feature-list {
    flex-direction: row;
    gap: 32px;
  }

  .feature-item {
    width: 33%;
    gap: 32px;
  }

  .feature-item img {
    width: auto;
    height: 64px;
  }

  .feature-item-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-section-content {
    padding: 100px 48px 100px 48px;
    gap: 100px;
  }

  .testimonial-card {
    width: var(--testimonial-card-width-desktop);
  }

  .testimonial-slider-content {
    width: var(--testimonial-slider-content-width-desktop);
  }  

  .discount-section-content {
    padding: 100px 48px 100px 48px;
    gap: 64px;
    flex-direction: row;
  }

  .discount-text-wrapper {
    align-items: flex-start;
    justify-content: space-between;
    height: 384px;
  }

  .discount-text {
    text-align: left;
    align-items: flex-start;
  }

  .discount-subtitle {
    font-family: var(--headline-headline-small-font-family);
    font-size: var(--headline-headline-small-font-size);
    line-height: var(--headline-headline-small-line-height);
    font-weight: var(--headline-headline-small-font-weight);
  }

  .steps-section-content {
    padding: 100px 48px 100px 48px;
    gap: 100px;
  }

  .steps-list {
    flex-direction: row;
    gap: 32px;
  }

  .steps-subtitle {
    font-family: var(--headline-headline-small-font-family);
    font-size: var(--headline-headline-small-font-size);
    line-height: var(--headline-headline-small-line-height);
    font-weight: var(--headline-headline-small-font-weight);
  }

  .step-item {
    gap: 64px;
    flex-direction: column;
    width: 33%;
  }

  .step-item-number {
    font-family: "Onest-Bold", sans-serif;
    font-size: 72px;
    line-height: 54px;
    letter-spacing: -1px;
    font-weight: 700;
  }

  .country-section-content {
    padding: 100px 48px 100px 48px;
    gap: 100px;
  }

  .map-section-content {
    padding: 100px 48px 100px 48px;
    gap: 100px;
  }

  .map-title {
    padding-left: 0px;
    padding-right: 0px;
  }

  .footer {
    padding: 48px;
  }

  .footer-first-part {
    flex-direction: row;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
  }

  .footer-first-part > * {
    flex-grow: 1;
  }

  .footer-first-part > .footer-social {
    display: none;
  }

  .footer-havaneo {
    align-items: start;
  }

  .footer-havaneo > .footer-social {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-copyright {
    align-items: flex-end;
  }

  .footer-second-part {
    flex-direction: row;
    gap: 64px;
    justify-content: space-between;
  }

  .footer-text {
    text-align: left;
    align-items: flex-start;
  }

  .footer-title {
    color: var(--fixed-onsecondaryfixed);
    font-family: var(--headline-headline-large-font-family);
    font-size: var(--headline-headline-large-font-size);
    line-height: var(--headline-headline-large-line-height);
    letter-spacing: var(--headline-headline-large-letter-spacing);
    font-weight: var(--headline-headline-large-font-weight);
  }

  .footer-subtitle {
    color: var(--fixed-onsecondaryfixed);
    font-family: var(--body-body-large-font-family);
    font-size: var(--body-body-large-font-size);
    line-height: var(--body-body-large-line-height);
    letter-spacing: var(--body-body-large-letter-spacing);
    font-weight: var(--body-body-large-font-weight);
  }

  .footer-third-part {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .footer-apps {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .language-selector-wrapper {
    justify-content: flex-end;
  }  

  .language-options {
    right: 0px;
  }
}

/* This section contains styles that are applied when the viewport is between 768px and 1392px. */

@media (min-width: 768px) and (max-width: 1392px) {
  #testimonial-button-left {
    left: 320px;
  }

  #testimonial-button-right {
    right: 320px;
  }
}

/* This section contains styles that are applied when the viewport width is 768px or less. */

@media (max-width: 768px) {
  #testimonial-button-left {
    left: 288px;
  }

  #testimonial-button-right {
    right: 288px;
  }
}

/* This section contains styles that are applied when the viewport is a touchscreen. */

@media (hover: none) and (pointer: coarse) {
  .testimonial-button {
    display: none;
  }

  /* The negative margins and increased width for the .country-carousel are intentional.
     This CSS hack ensures the carousel extends beyond its container to align with the
     viewport edges, creating a seamless visual effect on touchscreen devices. */
  .country-carousel {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}