:root {
  --pj-max: 1320px;
  --pj-ink: #111827;
  --pj-muted: #606a78;
  --pj-line: #d8dee7;
  --pj-soft: #f6f8fb;
  --pj-soft-blue: #f1f5fa;
  --pj-navy: #0d2f50;
  --pj-blue: #0a43e8;
  --pj-white: #ffffff;
  --pj-radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--pj-white);
  color: var(--pj-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.52;
}
a {
  color: #55218b;
  text-underline-offset: 2px;
}
a:hover,
a:focus {
  color: #2d0e4f;
}
img {
  max-width: 100%;
}
.pj-shell {
  width: min(var(--pj-max), calc(100% - 40px));
  margin: 0 auto;
}
.pj-topbar {
  border-bottom: 1px solid var(--pj-line);
  background: var(--pj-white);
}
.pj-topbar-inner {
  width: min(var(--pj-max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 13px 0;
}
.pj-topbar a {
  color: var(--pj-ink);
  font-weight: 700;
  text-decoration: none;
}
.pj-header {
  padding: 22px 0 14px;
  text-align: center;
}
.pj-header h1 {
  margin: 0;
  font-size: clamp(30px, 2.45vw, 35px);
  line-height: 1.12;
}
.pj-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 0 0 17px;
  border-bottom: 1px solid var(--pj-line);
  font-size: 15px;
}
.pj-hero {
  padding: 32px 0 38px;
  border-bottom: 1px solid var(--pj-line);
}
.pj-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 34px;
  align-items: center;
}
.pj-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.pj-eyebrow {
  margin: 0 0 9px;
  color: var(--pj-navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pj-hero h2 {
  margin: 0 0 17px;
  font-size: clamp(30px, 2.35vw, 36px);
  line-height: 1.1;
}
.pj-hero p {
  margin: 0 0 13px;
}
.pj-hero-media {
  width: 100%;
  max-width: 560px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--pj-line);
  border-radius: var(--pj-radius);
  background: var(--pj-soft);
  aspect-ratio: 1036 / 675;
}
.pj-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj-hero-media figcaption {
  position: absolute;
  left: -9999px;
}
.pj-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.pj-cta-center {
  justify-content: center;
  margin-top: 18px;
}
.pj-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--pj-ink);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.pj-cta-dark {
  background: var(--pj-ink);
  color: var(--pj-white);
}
.pj-cta-dark:hover,
.pj-cta-dark:focus {
  background: var(--pj-white);
  color: var(--pj-ink);
}
.pj-cta-advertise {
  background: var(--pj-blue);
  border-color: var(--pj-blue);
  color: var(--pj-white);
}
.pj-cta-advertise:hover,
.pj-cta-advertise:focus {
  background: #0838c4;
  border-color: #0838c4;
  color: var(--pj-white);
}
.pj-between-cta {
  width: min(var(--pj-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--pj-line);
  text-align: center;
}
.pj-section {
  padding: 46px 0;
  border-bottom: 1px solid var(--pj-line);
}
.pj-section h2 {
  margin: 0 0 9px;
  text-align: center;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
}
.pj-intro {
  max-width: 960px;
  margin: 0 auto 21px;
  text-align: center;
}
.pj-brief-grid,
.pj-grid-2,
.pj-grid-4,
.pj-routes-grid,
.pj-reviews-grid,
.pj-faq-grid,
.pj-ad-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  align-items: stretch;
}
.pj-brief-grid,
.pj-routes-grid,
.pj-ad-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pj-grid-2,
.pj-reviews-grid,
.pj-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pj-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pj-brief-card {
  min-width: 0;
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--pj-line);
  border-radius: var(--pj-radius);
  background: var(--pj-soft-blue);
  text-align: center;
}
.pj-brief-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--pj-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pj-brief-card strong {
  display: block;
  color: var(--pj-navy);
  font-size: 18px;
  line-height: 1.32;
}
.pj-card,
.pj-route,
.pj-review,
.pj-faq,
.pj-ad-card {
  min-width: 0;
  height: 100%;
  padding: 19px;
  border: 1px solid var(--pj-line);
  border-radius: var(--pj-radius);
  background: var(--pj-white);
  display: flex;
  flex-direction: column;
}
.pj-card h3,
.pj-route h3,
.pj-review h3,
.pj-faq h3,
.pj-ad-card h3 {
  margin: 0 0 10px;
  color: var(--pj-blue);
  font-size: 20px;
  line-height: 1.22;
  text-align: center;
}
.pj-card p,
.pj-route p,
.pj-review p,
.pj-faq p,
.pj-ad-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.47;
}
.pj-card p + p,
.pj-review p + p {
  margin-top: 9px;
}
.pj-label {
  display: block;
  min-height: 19px;
  margin-bottom: 7px;
  color: var(--pj-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pj-advertise {
  background: #fbfcfe;
}
.pj-ad-image {
  width: min(600px, 100%);
  margin: 22px auto 4px;
  overflow: hidden;
  border: 1px solid var(--pj-line);
  border-radius: var(--pj-radius);
  background: var(--pj-soft);
}
.pj-ad-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pj-ad-card {
  justify-content: center;
  min-height: 156px;
  text-align: center;
}
.pj-ad-card h3 {
  color: var(--pj-ink);
}
.pj-ad-price {
  margin: 0 0 9px !important;
  font-size: 19px !important;
  font-weight: 900;
}
.pj-airport-code {
  display: inline-flex;
  align-self: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid var(--pj-line);
  border-radius: 999px;
  background: var(--pj-soft);
  color: var(--pj-navy);
  font-size: 13px;
  font-weight: 900;
}
.pj-price-main {
  background: var(--pj-soft-blue);
}
.pj-price-main > strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--pj-navy);
  font-size: 25px;
  line-height: 1.15;
  text-align: center;
}
.pj-rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 7px;
  font-size: 15px;
}
.pj-rate-table th,
.pj-rate-table td {
  padding: 8px 6px;
  border-top: 1px solid var(--pj-line);
  text-align: left;
}
.pj-rate-table th:last-child,
.pj-rate-table td:last-child {
  text-align: right;
}
.pj-route {
  min-height: 232px;
}
.pj-route > p {
  flex: 1;
}
.pj-route-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}
.pj-route-meta div {
  padding: 10px 8px;
  border-radius: 8px;
  background: var(--pj-soft);
  text-align: center;
}
.pj-route-meta strong,
.pj-route-meta span {
  display: block;
}
.pj-route-meta strong {
  margin-bottom: 2px;
  font-size: 13px;
}
.pj-route-meta span {
  font-size: 15px;
}
.pj-link-list {
  display: grid;
  gap: 7px;
  margin: 2px 0 10px;
}
.pj-link-list a {
  display: block;
  padding: 5px 0;
  font-size: 15.5px;
  font-weight: 700;
}
.pj-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--pj-navy);
  color: var(--pj-white);
  font-weight: 900;
}
.pj-office {
  background: var(--pj-soft-blue);
}
.pj-office address {
  margin: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
}
.pj-rating {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 13px 18px;
  border: 1px solid var(--pj-line);
  border-radius: var(--pj-radius);
  background: var(--pj-soft-blue);
  text-align: center;
  font-weight: 800;
}
.pj-review {
  justify-content: center;
  min-height: 190px;
}
.pj-reviewer {
  margin-bottom: 9px !important;
  color: var(--pj-navy);
  font-weight: 900;
  text-align: center;
}
.pj-contact {
  padding: 30px 20px;
  background: var(--pj-navy);
  color: var(--pj-white);
  text-align: center;
}
.pj-contact strong {
  display: block;
  margin-bottom: 7px;
  font-size: 23px;
}
.pj-contact a {
  color: var(--pj-white);
}
.pj-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 24px 20px;
}
@media (min-width: 1120px) {
  .pj-header h1 {
    white-space: nowrap;
  }
  .pj-ad-card h3,
  .pj-ad-price {
    white-space: nowrap;
  }
}
@media (max-width: 980px) {
  .pj-hero-grid {
    grid-template-columns: 1fr;
  }
  .pj-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pj-brief-grid,
  .pj-grid-2,
  .pj-grid-4,
  .pj-routes-grid,
  .pj-reviews-grid,
  .pj-faq-grid,
  .pj-ad-grid {
    grid-template-columns: 1fr;
  }
  .pj-route-meta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  .pj-shell,
  .pj-topbar-inner,
  .pj-between-cta {
    width: min(100% - 24px, var(--pj-max));
  }
  .pj-hero h2 {
    font-size: 30px;
  }
}