:root {
  --blue: #182d48;
  --gold: #c6a664;
  --accent: #b22234;
  --light-gray: #f7f7f7;
  --dark: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* BREADCRUMB STYLES */
.breadcrumb_wrapper {
  background-color: var(--blue);
  color: white;
  padding: 15px 0px;
  border-bottom: 1px solid white;
}

.breadcrumb_wrapper a {
  color: white;
  font-size: 15px;
  transition: 0.3s linear;
}

.breadcrumb_wrapper a:hover {
  opacity: 0.9;
}

.breadcrumb_wrapper span {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.angle_right {
  font-size: 12px;
  margin: 0px 5px;
}

/* DATE TIME COMPONENT */
.date_wrap {
  display: flex;
  align-items: center;
  margin: 25px auto;
  max-width: 400px;
  width: fit-content;
  border-radius: 50px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  color: #000;
  background: #fff;
  font-size: 16px;
  padding: 10px 15px;
  text-align: center;
  gap: 5px;
}

.date_wrap i {
  font-size: 18px;
}

/* SECTION TITLE (shared across all pages) */
.section_title {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 40px;
}

/* ============================================================
   8. CTA SECTION
   ============================================================ */

.cta_section {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(198, 166, 100, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta_icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.cta_headline {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta_sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.22s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.cta_button:hover {
  background: #b99955;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.cta_link:hover {
  color: #fff;
}

.navbar_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.22s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

/* STAR RATINGS (shared) */
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

/* ---- FAQ ---- */
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  overflow: hidden;
}

.faq_item {
  border-bottom: 1px solid #f0f2f5;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.18s ease;
  font-family: inherit;
}

.faq_question:hover {
  background: rgba(24, 45, 72, 0.03);
}

.faq_item_open .faq_question {
  color: var(--blue);
  background: rgba(24, 45, 72, 0.03);
}

.faq_chevron {
  flex-shrink: 0;
  font-size: 12px;
  color: #aaa;
  transition: transform 0.28s ease;
}

.faq_item_open .faq_chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq_answer {
  padding: 0 22px 18px;
  background: rgba(24, 45, 72, 0.02);
}

.faq_answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-top: 4px;
}

.faq_answer[hidden] {
  display: none;
}

/* RICH TEXT */
.pa_about_content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pa_about_content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pa_about_content p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  margin-bottom: 14px !important;
}

.pa_about_content p span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  margin-bottom: 14px !important;
}

.pa_about_content p strong {
  font-weight: 700;
}

.pa_about_content p:last-child {
  margin-bottom: 0;
}

.pa_about_content ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 5px;
}

.pa_about_content ul li {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.75;
}

.pa_about_content ul li span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  font-size: 15px !important;
  margin-bottom: 15px !important;
  line-height: 1.75 !important;
}

.pa_about_content ol {
  list-style: decimal;
  margin-left: 30px;
  margin-bottom: 5px;
}

.pa_about_content ol li {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.75;
}

.pa_about_content ol li strong {
  font-weight: 700;
}

/* ---- pa_about_content — Table ---- */
.pa_about_content table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  margin: 20px 0;
  box-shadow: 0 1px 4px rgba(24, 45, 72, 0.08);
}

.pa_about_content table thead tr {
  background: var(--blue);
  color: #fff;
}

.pa_about_content table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.pa_about_content table tbody tr {
  color: var(--blue) !important;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  transition: background 0.15s ease;
}

.pa_about_content table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.pa_about_content table tbody tr:last-child {
  border-bottom: none;
}

.pa_about_content table tbody tr:hover {
  background: #eef3fb;
}

.pa_about_content table td {
  padding: 11px 16px !important;
  vertical-align: top !important;
  line-height: 1.5 !important;
}

@media only screen and (max-width: 1200px) {
  .container_mobile {
    padding: 0px 15px;
  }

  .breadcrumb_wrapper a {
    font-size: 14px;
  }

  .breadcrumb_wrapper span {
    font-size: 14px;
  }

  .angle_right {
    font-size: 13px;
    margin: 0px 5px;
  }

  .section_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .cta_section {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid wheat;
  }

  .navbar_cta {
    display: none;
  }
}
