html {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ##### Header Styles ##### */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #fdb813;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.main-header>* {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  width: auto;
  padding-right: 20px;
  border-right: 2px solid #323a47;
}

.header-title {
  font-size: 22px;
  font-weight: 700;
  color: #323a47;
}

.header-right {
  display: flex;
  align-items: center;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}

.status-animation {
  display: flex;
  align-items: center;
  width: 40px;
  overflow: hidden;
  position: relative;
}

.plane-animation {
  animation: plane-flying 1.5s linear infinite;
}

@keyframes plane-flying {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}

.status-text {
  font-size: 14px;
  font-weight: 600;
  color: #323a47;
}

/* Inactive State - Red Static Plane */
.server-status.inactive .plane-animation {
  animation: none;
  opacity: 1;
}

.server-status.inactive .plane-animation path {
  fill: #e9555a;
}

.server-status.inactive .status-text {
  color: #e9555a;
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  max-width: 1200px;
  margin: auto;
  margin-top: 70px;
  /* Header yüksekliği kadar margin */
}

.sections {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 100%;
}

.sections:first-child {
  margin-top: 120px;
}

.sections:not(:first-child) {
  margin-top: 120px;
}

.sections:last-child {
  margin-bottom: 120px;
}

/* ##### Section One Styles ##### */

.section-one-header {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  text-align: center;
}

.section-one-header,
.section-one-content,
.section-one-buttons {
  margin-bottom: 30px;
}

.section-one-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-one-content-sentences {
  font-size: 20px;
  font-weight: 600;
  color: #475467;
  text-align: center;
}

.section-one-buttons {
  display: flex;
  justify-content: center;
  height: 56px;
  max-height: 56px;
}

.section-one-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.section-one-buttons-one {
  min-width: 166px;
  background: linear-gradient(90deg, #e86b2e 0%, #f2ac14 100%, #f2ac14 100%);
  color: white;
  margin-right: 20px;
}

.section-one-buttons-two {
  min-width: 196px;
  background: white;
  color: #323a47;
  border: 1px solid #e86b2e;
}

.section-one-buttons a .buttons-icon img,
.section-one-footer-icon .section-one-footer-inform img {
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.section-one-footer {
  display: flex;
  justify-content: center;
}

.section-one-footer-inform {
  display: flex;
  align-items: center;
  background: #f3f6f8;
  border-radius: 16px;
  border: 1px solid #cad0db;
  color: #323a47;
  gap: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
}

.section-one-footer-icon .section-one-footer-inform img {
  margin-right: 15px;
}

/* ##### Section Two Styles ##### */

.section-two-header {
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: -0.7px;
  text-align: center;
  vertical-align: middle;
}

.section-two-header,
.section-two-content {
  margin-bottom: 30px;
}

.section-two-content {
  display: flex;
  justify-content: center;
}

.section-two-content-wrapper {
  display: flex;
  justify-content: space-between;
}

.section-two-content-wrapper .content-feature-item {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  padding-left: 30px;
  gap: 20px;
  border-radius: 16px;
  border-width: 1px;
  background: #f3f6f8;
  border: 1px solid #cad0db;
}

.section-two-content-wrapper .content-feature-item-middle {
  margin: 0px 15px;
}

.section-two-content-wrapper .content-feature-item .feature-one {
  display: flex;
  flex-direction: column;
}

.section-two-content-wrapper .content-feature-item .feature-one .feature-one-nested-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -4%;
  color: #4a5261;
}

.section-two-content-wrapper .content-feature-item .feature-one .feature-one-nested-subtext {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #4a5261;
  margin-top: 15px;
}

/* ##### Section Three Styles ##### */

.section-three-header {
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: -0.7px;
  text-align: center;
  vertical-align: middle;
}

.section-three-header,
.section-three-content {
  margin-bottom: 30px;
}

.section-three-content {
  display: flex;
  justify-content: space-between;
}

.section-three-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 1;
  align-items: flex-start;
}

.section-three-content-wrapper .content-feature-item {
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  padding-left: 30px;
  gap: 28px;
  border-radius: 16px;
  border-width: 1px;
  background-color: #f3f6f8;
  border: 1px solid #cad0db;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto;
}

.section-three-content-wrapper .content-feature-item-middle {
  margin: 0px 15px;
}

.section-three-content-wrapper .content-feature-item .feature-one {
  display: flex;
  align-items: center;
}

.section-three-content-wrapper .content-feature-item .feature-one .feature-one-nested-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -4%;
  color: #4a5261;
  margin-left: 10px;
  margin-top: -2px;
}

.section-three-content-wrapper .content-feature-item .feature-one .feature-one-nested-inform-text {
  padding-top: 2px;
  padding-right: 6px;
  padding-bottom: 2px;
  padding-left: 6px;
  border-radius: 6px;
  border-width: 1px;
  background-color: #ffe8e9;
  border: 1px solid #e9555a;
  color: #e9555a;
  font-weight: 600;
  font-size: 12px;
  margin-left: 15px;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper {
  display: flex;
  flex-direction: column;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two {
  margin-bottom: 20px;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two:last-child {
  margin-bottom: 0;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two .feature-two-nested-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #4a5261;
  margin-bottom: 8px;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two {
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  padding-left: 30px;
  gap: 20px;
  border-radius: 16px;
  border-width: 1px;
  background-color: #ffffff;
  border: 1px solid #cad0db;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two .feature-two-nested-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -4%;
  color: #4a5261;
}

.section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two .feature-two-nested-subtext {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #475467;
}

/* ##### Section Four Styles ##### */

.section-four-header {
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: -0.7px;
  text-align: center;
  vertical-align: middle;
}

.section-four-header,
.section-four-content {
  margin-bottom: 50px;
}

.section-four-content {
  display: flex;
  justify-content: center;
}

.section-four-content .content-feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}

.section-four-content .content-feature-item .feature-one {
  width: 70px;
  height: 70px;
  gap: 10px;
  border-radius: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdb813;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: -0.7px;
  text-align: center;
  vertical-align: middle;
}

.section-four-content .content-feature-item .feature-two {
  margin: 20px 0px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #4a5261;
}

.section-four-content .content-feature-item .feature-three {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  vertical-align: middle;
  color: #4a5261;
  max-width: 334px;
  word-break: break-word;
}

.section-four-content .content-feature-item-middle {
  margin: 0px 15px;
}

/* ##### Section Five Styles ##### */

.section-five-content {
  display: flex;
  justify-content: space-between;
}

.section-five-content .feature-one,
.section-five-content .feature-two,
.section-five-content .feature-three {
  flex: 1;
}

.feature-two .feature-two-sub-one {}

.section-five-content .feature-middle {
  margin: 0px 15px;
  display: flex;
  flex-direction: column;
}

.section-five-content .feature-two .feature-two-sub-two {
  margin-top: 20px;
}

.section-five-content .feature-one,
.section-five-content .feature-two .feature-two-sub-one,
.section-five-content .feature-two .feature-two-sub-two,
.section-five-content .feature-three {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  padding-left: 30px;
  border-radius: 16px;
  border-width: 1px;
  background: #ffffff;
  border: 1px solid #cad0db;
  margin-top: 30px;
}

.section-five-content .feature-three {
  justify-content: flex-start;
}

.section-five-content .feature-one .feature-one-icon-text,
.section-five-content .feature-two .feature-two-sub-one .feature-two-icon-text,
.section-five-content .feature-two .feature-two-sub-two .feature-two-icon-text,
.section-five-content .feature-three .feature-three-icon-text {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.section-five-content .feature-three .feature-three-icon-text {
  flex: none;
}

.section-five-content .feature-two .feature-two-sub-one,
.section-five-content .feature-two .feature-two-sub-two {
  flex-direction: column;
}

.section-five-content .feature-one .feature-one-icon-text .text,
.section-five-content .feature-two .feature-two-sub-one .feature-two-icon-text .text,
.section-five-content .feature-two .feature-two-sub-two .feature-two-icon-text .text,
.section-five-content .feature-three .feature-three-icon-text .text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #323a47;
}

.section-five-content .feature-one .feature-one-icon-text .icon img,
.section-five-content .feature-two .feature-two-sub-one .feature-two-icon-text .icon img,
.section-five-content .feature-two .feature-two-sub-two .feature-two-icon-text .icon img,
.section-five-content .feature-three .feature-three-icon-text .icon img {
  width: 24px;
  height: 24px;
}

.section-five-content .feature-one .feature-one-header-text .text,
.section-five-content .feature-two .feature-two-sub-one .feature-two-header-text .text,
.section-five-content .feature-two .feature-two-sub-two .feature-two-header-text .text,
.section-five-content .feature-three .feature-three-header-text .text {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #4a5261;
  margin-bottom: 10px;
  margin-top: 20px;
}

.section-five-content .feature-one .feature-one-header-text .subtext,
.section-five-content .feature-two .feature-two-sub-one .feature-two-header-text .subtext,
.section-five-content .feature-two .feature-two-sub-two .feature-two-header-text .subtext,
.section-five-content .feature-three .feature-three-header-text .subtext {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  vertical-align: middle;
  color: #4a5261;
}

.listed-card .list {}

.listed-card .list .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.listed-card .list .list-item .icon {
  margin-right: 10px;
  display: flex;
}

.listed-card .list .list-item .icon img {}

.listed-card .list .list-item .text {}

.command-and-copied {
  height: 58px;
  padding-right: 16px;
  padding-left: 16px;
  gap: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #dfe3ea;
  margin-bottom: 10px;
  margin-top: 15px;
}

.command-and-copied .command-text {
  color: #4a5261;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 14px;
  line-height: 120%;
  vertical-align: middle;
}

.copied-icon {
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
}

.listed-card .list-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  vertical-align: middle;
  color: #4a5261;
}

/* ##### Section Six Styles ##### */

.section-six-content-feature-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding-top: 26px;
  padding-right: 30px;
  padding-bottom: 26px;
  padding-left: 30px;
  gap: 20px;
  border-radius: 16px;
  border-width: 1px;
  background: #f3f6f8;
  border: 1px solid #cad0db;
}

.section-six-content-feature-item .feature-one {
  display: flex;
  align-items: center;
}

.section-six-content-feature-item .feature-one .feature-one-nested-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -4%;
  color: #4a5261;
  margin-left: 15px;
}

.section-six-content-feature-item .feature-two {
  display: flex;
  flex-direction: column;
}

.section-six-content-feature-item .feature-two .feature-two-top,
.section-six-content-feature-item .feature-two .feature-two-bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.question-item {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  background-color: #ffffff;
  border: 1px solid #cad0db;
  border-radius: 16px;
  border-width: 1px;
  padding: 20px;
}

.question-item-margined {
  margin-left: 10px;
}

/* ##### Scroll to Top Button ##### */

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e86b2e 0%, #f2ac14 100%, #f2ac14 100%);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(232, 107, 46, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 107, 46, 0.4);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px) scale(1);
}

.scroll-to-top-btn img {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}

/* ##### Alertify Custom Styles ##### */

/* Notifier Container */
.alertify-notifier {
  position: fixed !important;
  top: 90px !important;
  right: 20px !important;
  z-index: 9999 !important;
}

/* Base Message Style */
.alertify-notifier .ajs-message {
  position: relative !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: 'Open Sans', sans-serif !important;
  box-sizing: border-box !important;
  min-width: 250px !important;
  max-width: 600px !important;
  width: auto !important;
}

/* Success Message */
.alertify-notifier .ajs-message.ajs-success {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.35) !important;
  text-shadow: none !important;
}

/* Message Text Container */
.alertify-notifier .ajs-message .ajs-message-text {
  padding: 16px 20px !important;
  margin: 0 !important;
  color: white !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Flex Container Inside */
.alertify-notifier .ajs-message .ajs-message-text>div {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
}

/* First div inside ajs-message */
.alertify-notifier .ajs-message>div:first-child {
  display: flex !important;
}

.alertify-notifier .ajs-message>div:first-child svg:first-child {
  margin-right: 10px !important;
}

/* Text Span */
.alertify-notifier .ajs-message .ajs-message-text span {
  color: white !important;
  white-space: nowrap !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
}

/* Visible State Override */
.alertify-notifier .ajs-message.ajs-visible {
  display: flex !important;
  flex-direction: row !important;
  right: 190px !important;
  padding: 10px !important;
  width: 270px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.3s ease !important;
}

/* Right Position Override */
.alertify-notifier.ajs-right .ajs-message {
  left: auto !important;
}

.alertify-notifier .ajs-message.ajs-success span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
}

/* Ana footer container */
.page-footer-container {
  display: flex;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  align-items: center;
  min-height: 185px;
  padding: 0 10px;
  padding-bottom: 15px;
  background-color: #323a47;
}

/* Logo container */
.logo-container {
  align-self: center;
  margin-top: 24.5px;
}

.logo-container .pegasus-logo {
  width: 130px;
  height: 23px;
}

/* Footer action container (linkler) */
.footer-action-container {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 27.5px;
}

.footer-action-second-line-container {
  display: none;
}

/* Footer link metinleri */
.footer-action-text {
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.43;
  color: #cad0db;
  text-decoration: none;
}

.footer-action-text:hover {
  cursor: pointer;
  color: #fff;
}

.page-footer-container .footer-action-container .footer-action-text:not(:first-child) {
  margin-left: 27px;
}

/* Footer content wrapper */
.page-footer-container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Copyright container */
.page-footer-container .copy-right-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 27px;
}

/* Copyright öğeleri */
.copy-right-item {
  font-size: 14px;
  line-height: 1.43;
  color: #f3f6f8;
  text-align: center;
}

.page-footer-container .copy-right-container .copy-right-item:not(:first-child) {
  margin-left: 20px;
}

/* IATA container */
.copy-right-item.iata-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.page-footer-container .copy-right-container .copy-right-item.iata-container .iata-logo {
  width: 50px;
  height: 32px;
  margin-right: 10px;
}

/* Version info */
.version-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 10px;
}

.version-container .version-text {
  font-size: 12px;
  color: #cad0db;
  font-weight: 400;
}

/* ========================================
   TABLET RESPONSIVE - Max 1024px
   ======================================== */
@media screen and (max-width: 1024px) {

  /* Header Tablet */
  .main-header {
    height: 65px;
    padding: 0 20px;
  }

  .page-container {
    margin-top: 65px;
    padding: 0 20px;
  }

  .header-logo {
    width: 85px !important;
  }

  .header-title {
    font-size: 18px;
  }

  .server-status {
    padding: 8px 12px;
  }

  .status-text {
    font-size: 13px;
  }

  /* Section Two */
  .section-two-content-wrapper {
    gap: 15px;
  }

  .section-two-content-wrapper .content-feature-item {
    padding: 20px;
  }

  .section-two-content-wrapper .content-feature-item-middle {
    margin: 0 10px;
  }

  /* Section Three */
  .section-three-content-wrapper {
    gap: 0px;
  }

  .section-three-content-wrapper .content-feature-item {
    padding: 20px;
  }

  .section-three-content-wrapper .content-feature-item-middle {
    margin: 0 10px;
  }

  /* Section Four */
  .section-four-content {
    gap: 15px;
  }

  .section-four-content .content-feature-item {
    padding: 20px;
  }

  /* Section Five */
  .section-five-content {
    flex-direction: column;
    gap: 15px;
  }

  .section-five-content .feature-one,
  .section-five-content .feature-two .feature-two-sub-one,
  .section-five-content .feature-two .feature-two-sub-two,
  .section-five-content .feature-three {
    padding: 20px;
  }

  .section-five-content .feature-middle {
    margin: 0;
  }

  .section-five-content .feature-two {
    gap: 15px;
  }

  /* Section Six */
  .section-six-content-feature-item {
    padding: 20px;
  }

  /* Scroll to Top */
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  /* Alertify Notifications */
  .alertify-notifier .ajs-message.ajs-visible {
    right: 20px !important;
    width: 250px !important;
  }
}

/* ========================================
   MOBILE RESPONSIVE - Max 767px
   ======================================== */
@media screen and (max-width: 767px) {
  .sections:first-child {
    margin-top: 90px;
  }

  .sections:not(:first-child) {
    margin-top: 60px;
  }

  .sections:last-child {
    margin-bottom: 90px;
  }

  /* Header Mobile */
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px;
    padding: 0 15px;
    z-index: 10000 !important;
    transform: none !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .page-container {
    margin-top: 60px;
  }

  .main-header .header-container {
    gap: 10px;
    max-width: 100%;
  }

  .header-left {
    gap: 10px;
  }

  .header-logo {
    width: 70px !important;
    padding-right: 10px;
    border-right: 1.5px solid #323a47;
  }

  .header-title {
    font-size: 14px;
  }

  .server-status {
    padding: 6px 10px;
    gap: 8px;
  }

  .status-animation {
    width: 30px;
  }

  .plane-animation {
    width: 24px !important;
    height: 24px !important;
  }

  .status-text {
    font-size: 11px;
  }

  /* Section One */

  .section-one-header {
    font-size: 25px;
  }

  .section-one-content-sentences {
    font-size: 15px;
  }

  .section-one-buttons-one {
    min-width: 135px;
    margin-right: 10px;
  }

  .section-one-buttons-two {
    min-width: 156px;
    margin-right: 10px;
  }

  .section-one-buttons-one,
  .section-one-buttons-two {
    gap: 0px;
    padding: 6px;
    font-size: 12px;
  }

  .section-one-buttons-one .buttons-icon img,
  .section-one-buttons-two .buttons-icon img {
    width: 20px;
    height: 20px;
  }

  .section-one-footer-inform {
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    align-items: flex-start;
  }

  .section-one-footer-inform .section-one-footer-text {
    font-size: 11px;
  }

  .section-one-footer-inform .section-one-footer-icon img {
    width: 16px;
    height: 16px;
  }

  /* Section One */

  .section-two-header {
    font-size: 20px;
  }

  .section-two-content {
    margin-bottom: 0px;
  }

  .section-two-content-wrapper {
    flex-direction: column;
  }

  .section-two-content-wrapper .content-feature-item-middle {
    margin: 0px 0px;
  }

  .section-two-content-wrapper .content-feature-item {
    margin: 5px 15px;
  }

  .section-two-content-wrapper .content-feature-item .feature-one .feature-one-nested-text {
    font-size: 18px;
  }

  .section-two-content-wrapper .content-feature-item .feature-one .feature-one-nested-subtext {
    font-size: 12px;
  }

  .section-two-content-wrapper .content-feature-item .feature-two img {
    width: 28px;
    height: 28px;
  }

  /* Section Three */
  .section-three-header {
    font-size: 20px;
  }

  .section-three-content {
    margin-bottom: 0px;
  }

  .section-three-content-wrapper {
    flex-direction: column;
  }

  .section-three-content-wrapper .content-feature-item-middle {
    margin: 0px;
  }

  .section-three-content-wrapper .content-feature-item {
    margin: 10px 15px;
  }

  .section-three-content-wrapper .content-feature-item .feature-one .feature-one-nested-icon {
    width: 28px;
    height: 28px;
  }

  .section-three-content-wrapper .content-feature-item .feature-one .feature-one-nested-text {
    font-size: 18px;
  }

  .section-three-content-wrapper .content-feature-item .feature-one {
    justify-content: center;
  }

  .section-three-content-wrapper .content-feature-item .feature-one .feature-one-nested-icon img {
    width: 28px;
    height: 28px;
  }

  .section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two .feature-two-nested-text {
    font-size: 18px;
  }

  .section-three-content-wrapper .content-feature-item .feature-two-wrapper .feature-two .feature-two-nested-subtext {
    font-size: 12px;
  }

  /* Section Four */

  .section-four-content {
    flex-direction: column;
    margin-bottom: 0px;
  }

  .section-four-header {
    font-size: 20px;
  }

  .section-four-content .content-feature-item {
    margin: 15px 10px;
  }

  .section-four-content .content-feature-item .feature-one {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .section-four-content .content-feature-item .feature-two {
    font-size: 18px;
  }

  .section-four-content .content-feature-item .feature-three {
    font-size: 12px;
    max-width: 225px;
  }

  /* Section Five */
  .section-five-content {
    flex-direction: column;
    max-width: calc(100% - 30px);
    align-self: center;
  }

  .section-five-content .feature-one {
    margin-top: 0px;
  }

  .section-five-content .feature-middle {
    margin-right: 0px;
    margin-left: 0px;
  }

  .section-five-content .feature-one,
  .section-five-content .feature-two .feature-two-sub-one,
  .section-five-content .feature-two .feature-two-sub-two,
  .section-five-content .feature-three {
    padding-right: 25px;
    padding-left: 20px;
  }

  .section-five-content .feature-one .feature-one-icon-text .text,
  .section-five-content .feature-two .feature-two-sub-one .feature-two-icon-text .text,
  .section-five-content .feature-two .feature-two-sub-two .feature-two-icon-text .text,
  .section-five-content .feature-three .feature-three-icon-text .text {
    font-size: 22px;
  }

  /* Section Six */
  .section-six-content-feature-item {
    flex-direction: column;
    padding: 20px 15px;
    gap: 0px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .section-six-content-feature-item .feature-one {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .section-six-content-feature-item .feature-one .feature-one-nested-text {
    font-size: 20px;
    margin-bottom: 6px;
    margin-left: 10px;
  }

  .section-six-content-feature-item .feature-two {
    flex-direction: column;
  }

  .section-six-content-feature-item .feature-two .feature-two-top,
  .section-six-content-feature-item .feature-two .feature-two-bottom {
    flex-direction: column;
    margin-bottom: 0;
  }

  .question-item {
    margin: 10px 0;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
  }

  .question-item-margined {
    margin-left: 0;
    margin-top: 10px;
  }

  .page-footer-container {
    height: auto;
  }

  .page-footer-container .logo-container {
    margin-top: 19.4px;
  }

  .page-footer-container .footer-action-container .footer-action-text {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 1.67;
  }

  .divider {
    display: none;
  }

  .page-footer-container .footer-action-container .footer-action-text:not(:first-child) {
    margin-left: 0px;
  }

  .page-footer-container .footer-action-container {
    flex-flow: wrap;
    gap: 18px 27px;
    word-break: break-all;
  }

  .copy-right-container {
    flex-direction: column;
  }

  .page-footer-container .copy-right-container .copy-right-item:not(:first-child) {
    margin-left: -15px;
  }

  .copy-right-item,
  .iata-text {
    font-size: 12px;
    max-width: 195px;
    margin-top: 10px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .copy-right-container {
    margin-bottom: 27px;
  }

  .command-and-copied .command-text {
    font-size: 12px;
  }
}