.etg-section {
  box-sizing: border-box;
  width: 100%;
  margin-top: var(--etg-section-margin-top, 42px);
  margin-bottom: var(--etg-section-margin-bottom, 32px);
  margin-right: auto;
  margin-left: auto;
  font-family: inherit;
  color: #26323d;
  scroll-margin-top: 110px;
}

.etg-section *,
.etg-section *::before,
.etg-section *::after,
.etg-divider *,
.etg-divider *::before,
.etg-divider *::after {
  box-sizing: border-box;
}

.etg-section.etg-align-center {
  text-align: center;
}

.etg-section.etg-align-left {
  text-align: left;
}

.etg-section.etg-align-right {
  text-align: right;
}

.etg-section__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: inherit;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--etg-title-color, #1f2933);
  font-family: var(--etg-title-font-family, inherit);
  font-size: var(--etg-title-font-size, 32px) !important;
  line-height: 1.25;
  font-weight: var(--etg-title-font-weight, 700);
  letter-spacing: 0;
}

.etg-section__title-icon {
  color: var(--etg-title-color, #1f2933);
  font-size: 0.9em;
  line-height: 1;
}

.etg-section-title-divider {
  width: var(--etg-divider-width, 120px);
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--etg-divider-color, #f47d30);
}

.etg-section.etg-align-center > .etg-section-title-divider {
  margin-right: auto;
  margin-left: auto;
}

.etg-section.etg-align-right > .etg-section-title-divider {
  margin-right: 0;
  margin-left: auto;
}

.etg-section__subtitle {
  max-width: 880px;
  margin: 0 auto 24px;
  color: var(--etg-paragraph-color, #4b5563);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 17px) !important;
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-section.etg-align-left > .etg-section__subtitle {
  margin-left: 0;
}

.etg-section.etg-align-center > .etg-section__subtitle {
  margin-right: auto;
  margin-left: auto;
}

.etg-section.etg-align-right > .etg-section__subtitle {
  margin-right: 0;
  margin-left: auto;
}

.etg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid #f47d30;
  border-radius: 999px;
  background: linear-gradient(135deg, #f47d30 0%, #e8691f 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(244, 125, 48, 0.22);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.etg-button__icon {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.etg-button:hover,
.etg-button:focus {
  background: #dc671f;
  border-color: #dc671f;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244, 125, 48, 0.3);
}

.etg-button--ghost {
  background: #fff;
  color: #f47d30;
  box-shadow: 0 8px 18px rgba(31, 41, 51, 0.08);
}

.etg-button--ghost:hover,
.etg-button--ghost:focus {
  background: #fff7ed;
  color: #dc671f;
}

.etg-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: var(--etg-section-margin-top, 24px);
  margin-bottom: var(--etg-section-margin-bottom, 32px);
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
}

.etg-divider::before,
.etg-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f47d30 28%, #2f80a8 72%, transparent 100%);
  animation: etg-divider-shimmer 3s ease-in-out infinite;
}

@keyframes etg-divider-shimmer {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.etg-divider__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  margin: 0 16px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 35px rgba(244, 125, 48, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.etg-divider__logo img {
  width: 100%;
  height: 47px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.etg-divider__logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(244, 125, 48, 0.4);
}

.etg-divider__logo:hover img {
  transform: scale(1.05);
}

.etg-intro__content {
  max-width: 1040px;
  color: var(--etg-paragraph-color, #374151);
  font-size: var(--etg-paragraph-font-size, 17px);
  line-height: 1.85;
  font-family: var(--etg-paragraph-font-family, inherit);
  text-align: inherit;
  padding: 0;
}

.etg-intro__visible,
.etg-intro__hidden {
  color: var(--etg-paragraph-color, #374151);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 17px);
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.85;
  text-align: inherit;
}

.etg-intro.etg-align-center > .etg-intro__content {
  margin-right: auto;
  margin-left: auto;
}

.etg-intro.etg-align-right > .etg-intro__content {
  margin-left: auto;
}

.etg-intro__content p {
  margin: 0 0 16px;
  color: var(--etg-paragraph-color, #374151);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 17px);
  font-weight: var(--etg-paragraph-font-weight, inherit);
  text-align: inherit;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-intro__visible p,
.etg-intro__hidden p {
  color: var(--etg-paragraph-color, #374151);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 17px);
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.85;
  text-align: inherit;
}

.etg-intro__hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etg-intro__content.is-expanded .etg-intro__hidden {
  max-height: 5000px;
}

.etg-readmore-actions {
  width: 100%;
  margin-top: 12px;
  text-align: var(--etg-readmore-align, center);
}

.etg-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 10px 16px;
  border: 1px solid rgba(244, 125, 48, 0.26);
  border-radius: 999px;
  background: var(--etg-readmore-bg, #fff7ed);
  color: var(--etg-readmore-color, #d35400);
  font-family: var(--etg-readmore-font-family, inherit) !important;
  font-size: var(--etg-readmore-font-size, 15px) !important;
  font-weight: var(--etg-readmore-font-weight, 700) !important;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(244, 125, 48, 0.12);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.etg-readmore-link:hover,
.etg-readmore-link:focus {
  color: var(--etg-readmore-color, #d35400);
  border-color: rgba(244, 125, 48, 0.45);
  background: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.etg-readmore-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
  transition: transform 240ms ease;
}

.etg-intro__content.is-expanded .etg-readmore-link svg {
  transform: rotate(180deg);
}

.etg-card-nav {
  counter-reset: etg-card-nav;
  display: grid;
  grid-template-columns: repeat(var(--etg-columns, 2), minmax(0, 1fr));
  gap: 20px;
}

.etg-card-nav__item {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.etg-card-nav__item::before {
  counter-increment: etg-card-nav;
  content: counter(etg-card-nav, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff1e7;
  color: #f47d30;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(244, 125, 48, 0.18);
}

.etg-card-nav__item::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(47, 128, 168, 0.08);
}

.etg-card-nav__item:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 125, 48, 0.38);
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.13);
}

.etg-card-nav__item h3 {
  margin: 0 0 10px;
  color: var(--etg-title-color, #1f2933);
  font-family: var(--etg-title-font-family, inherit);
  font-size: var(--etg-title-font-size, 22px) !important;
  font-weight: var(--etg-title-font-weight, 700);
  line-height: 1.3;
  letter-spacing: 0;
}

.etg-card-nav__item p {
  margin: 0 0 20px;
  color: var(--etg-paragraph-color, #4b5563);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 16px) !important;
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-card-nav__item .etg-button {
  position: relative;
  margin-top: auto;
  z-index: 1;
}

.etg-card-nav-section.etg-align-center > .etg-card-nav > .etg-card-nav__item {
  align-items: center;
  text-align: center;
}

.etg-card-nav-section.etg-align-right > .etg-card-nav > .etg-card-nav__item {
  align-items: flex-end;
  text-align: right;
}

.etg-tours-block__list {
  margin-top: 24px;
  text-align: left;
}

.etg-tours-block > .etg-section__subtitle {
  margin-bottom: 0;
}

.etg-feature-list__items {
  display: grid;
  grid-template-columns: repeat(var(--etg-columns, 2), minmax(0, 1fr));
  gap: 14px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.etg-feature-list__items li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 48px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  color: var(--etg-paragraph-color, #374151);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 16px) !important;
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.etg-feature-list__items li:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 168, 0.22);
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.09);
}

.etg-feature-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #f47d30;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 0 0 5px rgba(244, 125, 48, 0.14);
}

.etg-feature-list.etg-align-center > .etg-feature-list__items > li {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.etg-feature-list.etg-align-right > .etg-feature-list__items > li {
  flex-direction: row-reverse;
  text-align: right;
}

.etg-faq {
  max-width: 980px;
  padding: 0;
  background: var(--etg-faq-bg, transparent);
  border-radius: 14px;
}

.etg-faq.etg-align-left {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.etg-faq.etg-align-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.etg-faq.etg-align-right {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.etg-faq > .etg-section__title {
  display: block;
  width: 100%;
  text-align: var(--etg-faq-title-align, inherit) !important;
}

.etg-faq__item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.etg-faq__item.is-open {
  border-color: rgba(244, 125, 48, 0.75);
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

.etg-faq__question {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  border: 0;
  background: var(--etg-question-bg, #fff) !important;
  color: var(--etg-question-color, #1f2933) !important;
  font-family: var(--etg-question-font-family, var(--etg-title-font-family, inherit)) !important;
  font-size: var(--etg-question-font-size, 17px) !important;
  font-weight: var(--etg-question-font-weight, 700) !important;
  line-height: 1.45;
  text-align: var(--etg-question-align, left) !important;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-faq__question-text {
  display: inline-flex;
  min-width: 0;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
}

.etg-faq__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: #fff1e7;
  color: #f47d30;
  font-size: 14px;
  font-weight: 800;
}

.etg-faq__question-label {
  min-width: 0;
  width: 100%;
  padding-top: 4px;
  color: var(--etg-question-color, #1f2933) !important;
  font-family: var(--etg-question-font-family, var(--etg-title-font-family, inherit)) !important;
  font-size: var(--etg-question-font-size, 17px) !important;
  font-weight: var(--etg-question-font-weight, 700) !important;
  text-align: var(--etg-question-align, left) !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-faq__icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff1e7;
  box-shadow: inset 0 0 0 1px rgba(244, 125, 48, 0.18);
}

.etg-faq__icon::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #f47d30;
  border-bottom: 2px solid #f47d30;
  transform: rotate(45deg);
  transition: transform 180ms ease, top 180ms ease;
}

.etg-faq__question[aria-expanded="true"] .etg-faq__icon::before {
  top: 12px;
  transform: rotate(225deg);
}

.etg-faq__answer {
  padding: 0 26px 22px 74px;
  background: var(--etg-answer-bg, #fff) !important;
  color: var(--etg-paragraph-color, #4b5563) !important;
  font-family: var(--etg-paragraph-font-family, inherit) !important;
  font-size: var(--etg-paragraph-font-size, 16px) !important;
  font-weight: var(--etg-paragraph-font-weight, inherit) !important;
  line-height: 1.75;
  text-align: var(--etg-answer-align, left) !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-faq__answer p {
  margin: 0;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  text-align: inherit !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 18%, rgba(47, 128, 168, 0.16), transparent 30%),
    linear-gradient(135deg, #fff8f1 0%, #fff 46%, #eef7fb 100%);
  border: 1px solid rgba(244, 125, 48, 0.22);
  box-shadow: 0 18px 46px rgba(31, 41, 51, 0.11);
}

.etg-cta::before {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(244, 125, 48, 0.11);
}

.etg-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f47d30, #2f80a8);
}

.etg-cta__content {
  position: relative;
  max-width: 720px;
}

.etg-cta__content p {
  margin: 0;
  color: var(--etg-paragraph-color, #4b5563);
  font-family: var(--etg-paragraph-font-family, inherit);
  font-size: var(--etg-paragraph-font-size, 17px) !important;
  font-weight: var(--etg-paragraph-font-weight, inherit);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

.etg-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.etg-cta.etg-align-center {
  flex-direction: column;
  text-align: center;
}

.etg-cta.etg-align-center > .etg-cta__actions {
  justify-content: center;
}

.etg-cta.etg-align-right {
  text-align: right;
}

@media (max-width: 992px) {
  .etg-section__title {
    font-size: 28px;
  }

  .etg-divider {
    margin-top: var(--etg-section-margin-top, 40px);
    margin-bottom: var(--etg-section-margin-bottom, 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .etg-divider__logo {
    width: 70px;
    height: 70px;
    margin: 0 12px;
  }

  .etg-card-nav,
  .etg-feature-list__items {
    grid-template-columns: 1fr;
  }

  .etg-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .etg-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .etg-section {
    margin-top: var(--etg-section-margin-top, 28px);
    margin-bottom: var(--etg-section-margin-bottom, 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .etg-section__title {
    font-size: 24px;
  }

  .etg-section__subtitle,
  .etg-intro__content {
    font-size: 16px;
  }

  .etg-divider {
    margin-top: var(--etg-section-margin-top, 30px);
    margin-bottom: var(--etg-section-margin-bottom, 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .etg-divider__logo {
    width: 60px;
    height: 60px;
  }

  .etg-divider__logo img {
    height: 33px;
  }

  .etg-card-nav__item,
  .etg-cta {
    padding: 20px;
  }

  .etg-faq__question {
    padding: 18px;
  }

  .etg-faq__question-text {
    gap: 12px;
  }

  .etg-faq__answer {
    padding: 0 18px 18px;
  }

  .etg-button {
    width: 100%;
  }
}
