@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700;6..72,800;6..72,900&display=swap");
/* styles.css, full replacement */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Homepage styles */
body {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  color: #102033;
  background: #f9f7f6;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(12, 110, 174, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(12, 110, 174, 0.88);
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(12, 110, 174, 0.6);
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 247, 246, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.1);
}

.header_row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand_logo {
  width: 100px;
  height: 80px;
  object-fit: cover;
}

@media (min-width: 960px) {
  .brand_logo {
    width: 150px;
    height: 80px;
  }
}

.brand_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand_name {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.1;
}

.brand_tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(12, 110, 174, 0.85);
}

.nav {
  display: none;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav_link {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: rgba(16, 32, 51, 0.78);
  position: relative;
  padding: 10px 4px;
}

.nav_link:hover {
  color: rgba(12, 110, 174, 0.95);
}

.nav_link.is_active {
  color: rgba(21, 63, 101, 1);
}

.nav_link.is_active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: rgba(12, 110, 174, 0.65);
  border-radius: 999px;
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.btn_lg {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 14px;
}

.btn_primary {
  background: #153f65;
  color: #ffffff;
}

.btn_primary:hover {
  opacity: 0.94;
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.18);
  transform: translateY(-1px);
}

.btn_ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(16, 32, 51, 0.1);
  color: rgba(16, 32, 51, 0.92);
}

.btn_ghost:hover {
  border-color: rgba(12, 110, 174, 0.22);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
  transform: translateY(-1px);
}

.btn_light {
  background: #ffffff;
  color: #153f65;
}

.btn_light:hover {
  opacity: 0.96;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.menu_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: box-shadow 160ms ease, border-color 160ms ease,
    transform 160ms ease;
}

.menu_btn:hover {
  border-color: rgba(12, 110, 174, 0.22);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
  transform: translateY(-1px);
}

.menu_icon {
  width: 18px;
  height: 2px;
  background: rgba(16, 32, 51, 0.92);
  position: relative;
  border-radius: 999px;
}

.menu_icon::before,
.menu_icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(16, 32, 51, 0.92);
  border-radius: 999px;
}

.menu_icon::before {
  top: -6px;
}

.menu_icon::after {
  top: 6px;
}

.mobile_nav {
  display: none;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  padding: 10px 0 18px 0;
}

.mobile_nav.is_open {
  display: block;
}

.mobile_link {
  display: block;
  padding: 12px 24px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(16, 32, 51, 0.78);
  transition: color 160ms ease, background-color 160ms ease;
}

.mobile_link:hover {
  color: rgba(12, 110, 174, 0.95);
  background: rgba(12, 110, 174, 0.06);
}

.mobile_link.is_active {
  color: rgba(21, 63, 101, 1);
}

.header_ctas_desktop {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 960px) {
  .header_ctas_desktop {
    display: inline-flex;
  }
}

.mobile_ctas {
  display: grid;
  gap: 10px;
  padding: 10px 24px 14px 24px;
}

.btn_full {
  width: 100%;
}

/* Nav Social Icons */
.header_social {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.header_social_link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(16, 32, 51, 0.92);
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.header_social_link:hover {
  border-color: rgba(12, 110, 174, 0.22);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
  transform: translateY(-1px);
}

.header_social_link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 33, 67, 0.12);
  border-color: rgba(10, 33, 67, 0.35);
}

.header_social_icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.hero {
  padding: 64px 0;
}

.hero_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero_title {
  margin: 14px 0 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: clamp(44px, 6vw, 56px);
  letter-spacing: -0.01em;
}

.hero_title_em {
  font-style: italic;
  color: rgba(225, 35, 15, 0.92);
  padding: 0 8px;
}

.hero_subtitle {
  margin: 18px 0 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(16, 32, 51, 0.68);
  max-width: 640px;
}

.hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero_points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
  max-width: 700px;
}

.point {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 16px;
  padding: 16px;
}

.point_title {
  font-weight: 900;
  margin-bottom: 6px;
  font-size: 18px;
}

.point_text {
  color: rgba(16, 32, 51, 0.68);
  line-height: 1.75;
  font-size: 18px;
  margin: 0;
}

.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.point_icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(12, 110, 174, 0.08);
  border: 1px solid rgba(12, 110, 174, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.point_icon .material-symbols-outlined {
  font-size: 22px;
  color: rgba(12, 110, 174, 0.95);
}

.point_content {
  display: grid;
  gap: 4px;
}

.hero_card_inner {
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 22px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
}

.hero_badge {
  background: rgba(12, 110, 174, 0.08);
  border: 1px solid rgba(12, 110, 174, 0.14);
  color: rgba(16, 32, 51, 0.88);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
  line-height: 1.5;
  word-spacing: 4;
}

.hero_image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.section {
  padding: 72px 0;
}

.section_light {
  background: #ffffff;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
  border-bottom: 1px solid rgba(16, 32, 51, 0.1);
}

.section_head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section_head.center {
  text-align: center;
  justify-items: center;
}

.section_title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section_subtitle {
  margin: 0;
  color: rgba(16, 32, 51, 1);
  font-size: 19px;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.75;
  max-width: 780px;
}

.two_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.info_card {
  background: rgba(249, 247, 246, 0.72);
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 18px;
  padding: 22px;
}

.info_title {
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 20px;
}

.info_text {
  font-family: "Newsreader", Georgia, serif;
  margin: 0;
  color: rgba(16, 32, 51, 0.68);
  line-height: 1.75;
  font-size: 19px;
}

.split_section {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.split_media {
  height: 100%;
}

.split_media_card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
}

.split_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split_media_badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 320px;
  background: #da4c1b;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.45;
}

.split_content .section_head {
  margin-bottom: 16px;
}

.stack_cards {
  display: grid;
  gap: 12px;
}

.cards_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.service_card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 18px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.service_card::after {
  content: attr(aria-label);
  display: none;
}

.service_card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 110, 174, 0.22);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.12);
}

.service_title {
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 20px;
}

.service_text {
  margin: 0;
  color: rgba(16, 32, 51, 0.68);
  line-height: 1.75;
  font-size: 19px;
}

.service_icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(12, 110, 174, 0.08);
  border: 1px solid rgba(12, 110, 174, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service_icon .material-symbols-outlined {
  font-size: 22px;
  color: rgba(12, 110, 174, 0.95);
}

.bullets {
  margin: 14px 0 0 0;
  padding: 0 0 0 18px;
  color: rgba(16, 32, 51, 0.68);
  line-height: 1.8;
  font-weight: 800;
  font-size: 18px;
}

.bullets li {
  margin: 6px 0;
}

.cta {
  padding-top: 0;
}

.cta_box {
  background: #153f65;
  color: #ffffff;
  border-radius: 28px;
  padding: 44px 22px;
  text-align: center;
  box-shadow: 0 34px 90px rgba(16, 32, 51, 0.22);
}

.cta_title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.cta_text {
  margin: 14px auto 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-size: 19px;
}

.cta_note {
  margin: 14px 0 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-weight: 800;
}

/* Footer, professional multi column layout */

.site_footer {
  margin-top: 48px;
  background: #102033;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer layout, responsive */
.footer_top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.footer_brandcol {
  min-width: 0;
}

.footer_desc {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer_coltitle {
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--primary);
}

.footer_link {
  display: inline-flex;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
}

.footer_link:hover {
  color: var(--primary);
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.footer_bottomright {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 980px) {
  .footer_top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer_top {
    grid-template-columns: 1fr;
  }

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

  .footer_bottomright {
    width: 100%;
    justify-content: space-between;
  }
}

.footer_top {
  padding: 44px 0 26px 0;
  display: grid;
  gap: 22px;
}

.footer_brandcol {
  display: grid;
  gap: 16px;
  align-content: start;
  max-width: 420px;
}

.footer_brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer_logo {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.footer_brandtext {
  display: grid;
  gap: 2px;
}

.footer_brandname {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.1;
}

.footer_brandtag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(12, 110, 174, 0.85);
}

.footer_desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 18px;
  max-width: 420px;
}

.footer_col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer_coltitle {
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
  color: #da4c1b;
  margin-bottom: 6px;
}

.footer_link {
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  white-space: nowrap;
}

.footer_link:hover {
  color: #ffffff;
}

.footer_note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 18px;
}

.footer_form {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.footer_input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.footer_input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 800;
}

.footer_btn {
  width: fit-content;
  background: #ffffff;
  color: #102033;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer_formhint {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: rgba(16, 32, 51, 0.55);
  min-height: 16px;
}

.footer_bottom {
  padding: 16px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
  align-items: center;
}

.footer_credit {
  font-family: "Newsreader", Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.footer_creditlink {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 900;
  color: #da4c1b;
}

.footer_creditlink:hover {
  opacity: 0.9;
}

.footer_bottomright {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer_copy,
.footer_credit {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.footer_social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer_sociallink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.footer_sociallink:hover {
  border-color: #da4c1b;
  color: #da4c1b;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .menu_btn {
    display: none;
  }

  .hero_grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
  }

  .hero_image,
  .page_hero_image {
    height: 520px;
  }

  .two_cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .split_section {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
  }

  .split_image {
    height: auto;
  }

  .cards_grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer_top {
    grid-template-columns: 1.35fr 0.9fr 0.8fr 1fr;
    gap: 26px;
  }

  .footer_bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer_bottomright {
    justify-content: flex-end;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }
}

@media (min-width: 960px) and (max-width: 1100px) {
  .nav {
    gap: 14px;
  }
  .nav_link {
    font-size: 14px;
  }
}

/*Who we are Styles*/

.page_hero {
  padding: 60px 0;
}

.page_hero_grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.page_title {
  margin: 14px 0 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.01em;
}

.page_subtitle {
  margin: 16px 0 0 0;
  color: rgba(16, 32, 51, 1);
  line-height: 1.75;
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  max-width: 720px;
}

.page_hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.page_hero_media_card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
}

.page_hero_image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_hero_badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 320px;
  background: rgba(16, 32, 51, 0.92);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.45;
}

.story_grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.story_block {
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 18px;
  padding: 22px;
}

.story_block_accent {
  background: rgba(12, 110, 174, 0.06);
  border-color: rgba(12, 110, 174, 0.14);
}

.story_title {
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 20px;
}

.story_text {
  margin: 0 0 14px 0;
  color: rgba(16, 32, 51, 0.7);
  line-height: 1.75;
  font-size: 19px;
}

.story_callout {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(16, 32, 51, 0.1);
}

.story_callout .material-symbols-outlined {
  color: rgba(12, 110, 174, 0.95);
  font-size: 22px;
}

.story_callout_text {
  font-weight: 900;
  color: rgba(16, 32, 51, 0.92);
  font-size: 18px;
}

.values_grid,
.team_grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.value_card,
.team_card {
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 18px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.value_card:hover,
.team_card:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 110, 174, 0.22);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.12);
}

.value_icon,
.team_icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(12, 110, 174, 0.08);
  border: 1px solid rgba(12, 110, 174, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value_icon .material-symbols-outlined,
.team_icon .material-symbols-outlined {
  font-size: 22px;
  color: rgba(12, 110, 174, 1);
}

.value_title,
.team_title {
  font-family: "Newsreader", Georgia, serif;
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 20px;
}

.value_text,
.team_text {
  font-family: "Newsreader", Georgia, serif;
  margin: 0;
  color: rgba(16, 32, 51, 1);
  line-height: 1.75;
  font-size: 19px;
}

.section_endcta {
  margin-top: 28px;
}

.section_endcta_box {
  background: #153f65;
  color: #ffffff;
  border-radius: 26px;
  padding: 26px 22px;
  display: grid;
  gap: 16px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(16, 32, 51, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section_endcta_copy {
  display: grid;
  gap: 8px;
}

.section_endcta_title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
}

.section_endcta_text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-weight: 700;
  font-size: 19px;
  max-width: 62ch;
}

.section_endcta_action {
  display: flex;
  justify-content: flex-start;
}

.btn_light {
  background: #ffffff;
  color: #102033;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Desktop */
@media (min-width: 960px) {
  .page_hero_grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
  }

  .values_grid,
  .team_grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .story_grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section_endcta_box {
    grid-template-columns: 1fr auto;
    padding: 30px 34px;
  }

  .section_endcta_action {
    justify-content: flex-end;
  }
}

/* Our Services Styles */

/* Services sticky nav */
.services_sticky {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: rgba(249, 247, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.services_sticky_row {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.services_sticky_row::-webkit-scrollbar {
  display: none;
}

.services_sticky_link {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(16, 32, 51, 0.55);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}

.services_sticky_link:hover {
  color: rgba(16, 32, 51, 0.85);
}

.services_sticky_link.is_active {
  color: rgba(12, 110, 174, 0.98);
  border-bottom-color: rgba(12, 110, 174, 0.98);
}

/* Service detail layout */
.service_detail {
  display: grid;
  gap: 18px;
  align-items: start;
}

.service_detail_media {
  min-width: 0;
}

.service_media_card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  background: #ffffff;
}

.service_media_img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.service_media_badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 360px;
  z-index: 2;
  background: rgba(16, 32, 51, 0.92);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
}

.service_media_badge .material-symbols-outlined {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.service_detail_copy {
  min-width: 0;
}

.service_meta .section_title {
  margin-top: 10px;
}

.service_list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service_item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  color: rgba(16, 32, 51, 0.82);
  line-height: 1.55;
  font-size: 18px;
}

.service_item .material-symbols-outlined {
  font-size: 18px;
  margin-top: 2px;
  color: rgba(12, 110, 174, 0.95);
}

.service_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Featured dark section */
.service_feature {
  padding: 0;
}

.service_feature_box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #153f65;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(16, 32, 51, 0.18);
  padding: 26px 18px;
}

.service_feature_bgicon {
  position: absolute;
  top: -18px;
  right: 14px;
  opacity: 0.1;
  pointer-events: none;
}

.service_feature_bgicon .material-symbols-outlined {
  font-size: 140px;
}

.kicker_on_dark {
  color: rgba(255, 255, 255, 0.75);
}

.service_feature_title {
  margin: 10px 0 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
}

.service_feature_text {
  margin: 14px 0 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-weight: 700;
  max-width: 70ch;
  font-size: 19px;
}

.service_feature_grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.service_feature_item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service_feature_item .material-symbols-outlined {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 2px;
}

.service_feature_itemtitle {
  font-weight: 900;
  font-size: 18px;
}

.service_feature_itemtext {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  font-weight: 700;
  font-size: 18px;
}

.service_actions_on_dark {
  margin-top: 18px;
}

/* Reverse layout helper */
.service_detail_reverse .service_detail_media {
  order: 2;
}

.service_detail_reverse .service_detail_copy {
  order: 1;
}

/* Desktop */
@media (min-width: 960px) {
  .service_detail {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: center;
  }

  .service_media_img {
    height: 520px;
  }

  .service_feature_box {
    padding: 40px 44px;
  }

  .service_feature_grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 980px;
  }

  .service_detail_reverse .service_detail_media {
    order: 1;
  }

  .service_detail_reverse .service_detail_copy {
    order: 2;
  }
}

/* faq.css */
/* FAQ page styles aligned with the existing Amuta Plus look */

:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line2: rgba(15, 23, 42, 0.06);
  --card: #ffffff;
  --soft: #f6f8fb;

  --primary: #102033;
  --primary2: #0a2143;
  --accent: #f59e0b;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow2: 0 8px 20px rgba(2, 6, 23, 0.06);

  --container: 1180px;
}

.page_faq {
  background: var(--bg);
  color: var(--ink);
}

.page_faq .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.faq_hero {
  padding: 56px 0 28px;
}

.faq_hero .container {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  color: #fff;
  padding: 36px;
  box-shadow: var(--shadow);
}

.faq_hero_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.faq_hero_copy {
  min-width: 0;
}

.faq_hero_title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.faq_hero_subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 19px;
  max-width: 62ch;
}

/* Search, improved alignment and mobile behavior */
/* FAQ search, responsive, icon stays aligned inside the input on all breakpoints */
.faq_search {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  max-width: 640px;
}

.faq_search_field {
  position: relative;
  min-width: 0;
}

.faq_search_input {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 14px;
  padding: 14px 14px 14px 46px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  height: 52px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.faq_search_input::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

.faq_search_icon {
  color: var(--ink);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
  line-height: 1;
}

.faq_search_btn {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 0 16px;
  font-weight: 800;
  font-size: 18px;
  color: rgba(16, 32, 51, 0.92);
  background: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.faq_search_btn:hover {
  opacity: 0.95;
}

.faq_search_btn:active {
  transform: scale(0.98);
}

@media (max-width: 520px) {
  .faq_search {
    grid-template-columns: 1fr;
  }

  .faq_search_btn {
    width: 100%;
  }
}

.faq_hero_note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.faq_hero_card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
}

.faq_hero_card_icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 12px;
}

.faq_hero_card_text {
  font-weight: 800;
  line-height: 1.6;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

/* Layout */
.faq_grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
  padding: 26px 0 70px;
}

.faq_sidebar {
  position: sticky;
  top: 92px;
}

.faq_sidebar_card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.faq_sidebar_title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.faq_sidebar_sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq_nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq_nav_link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  font-size: 18px;
}

.faq_nav_link:hover {
  background: var(--soft);
  border-color: var(--line2);
}

.faq_nav_link.is_active {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.22);
  color: var(--primary);
  font-weight: 900;
}

.faq_nav_link .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.75;
}

.faq_sidebar_cta {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(16, 32, 51, 0.04),
    rgba(16, 32, 51, 0.02)
  );
}

.faq_sidebar_cta_title {
  margin: 0 0 6px;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
}

.faq_sidebar_cta_text {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq_main {
  padding: 0;
}

.faq_intro {
  margin-bottom: 14px;
}

.faq_sections {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Sections and accordion */
.faq_section {
  scroll-margin-top: 110px;
}

.faq_section_head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.faq_section_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(16, 32, 51, 0.06);
  border: 1px solid var(--line);
}

.faq_section_title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq_item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.04);
}

.faq_q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.faq_q_text {
  font-weight: 900;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.faq_q_icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.7;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq_item.is_open .faq_q_icon {
  transform: rotate(180deg);
  opacity: 1;
}

.faq_a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq_a_inner {
  padding: 0 16px 16px;
  border-top: 1px solid var(--line2);
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

/* Helpful block */
.faq_helpful {
  margin-top: 18px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.faq_helpful_title {
  margin: 0;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
}

.faq_helpful_text {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.faq_helpful_actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 980px) {
  .faq_hero .container {
    padding: 22px;
  }
  .faq_hero_grid {
    grid-template-columns: 1fr;
  }
  .faq_grid {
    grid-template-columns: 1fr;
  }
  .faq_sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 520px) {
  .faq_q {
    padding: 14px;
  }
  .faq_a_inner {
    padding: 0 14px 14px;
  }
}

/* End CTA block, shared component */
.cta_end {
  border-radius: 24px;
  padding: 26px;
  background: #153f65;
  color: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta_end_left {
  min-width: 0;
}

.cta_end_title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 30px);
}

.cta_end_text {
  margin: 0;
  color: #ffffff;
  line-height: 1.7;
  max-width: 70ch;
  font-size: 19px;
}

.cta_end_right {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .cta_end {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cta_end_right,
  .cta_end_right .btn {
    width: 100%;
  }
}

/* CTA End refinements */
.cta_end {
  align-items: center;
}

.cta_end_left {
  max-width: 70ch;
}

.cta_end_right .btn {
  min-height: 48px;
}

@media (max-width: 760px) {
  .cta_end {
    align-items: stretch;
    text-align: center;
  }

  .cta_end_left {
    max-width: none;
  }

  .cta_end_right {
    width: 100%;
  }

  .cta_end_right .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Blog */

.page_blog .blog_hero {
  padding-top: 28px;
}

.blog_hero_head {
  max-width: 860px;
}

.blog_featured {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(16, 32, 51, 0.06);
  border: 1px solid rgba(16, 32, 51, 0.12);
}

.blog_featured_media {
  position: relative;
  min-height: 320px;
  background: rgba(16, 32, 51, 0.08);
}

.blog_featured_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog_featured_media_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 32, 51, 0.18),
    rgba(16, 32, 51, 0.58)
  );
  pointer-events: none;
}

.blog_card_media {
  aspect-ratio: 16 / 9;
  height: 200px;
}

@media (max-width: 980px) {
  .blog_card_media {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .blog_card_media {
    height: 200px;
  }
}

.blog_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_featured_tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(16, 32, 51, 0.88);
}

.blog_featured_body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(16, 32, 51, 0.72);
}

.blog_meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 32, 51, 0.1);
}

.blog_featured_title {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(16, 32, 51, 0.96);
  margin: 0;
}

.blog_featured_excerpt {
  margin: 0;
  color: rgba(16, 32, 51, 0.72);
  line-height: 1.6;
  max-width: 56ch;
  font-size: 19px;
}

.blog_featured_actions {
  margin-top: 6px;
  display: flex;
  gap: 12px;
}

.blog_grid_wrap {
  margin-top: 34px;
}

.blog_grid_head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.blog_grid_tools {
  width: min(420px, 100%);
}

.blog_search {
  position: relative;
}

.blog_search_icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
}

.blog_search_input {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 12px 14px 12px 42px;
  outline: none;
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.blog_search_input:focus {
  box-shadow: 0 0 0 4px rgba(16, 32, 51, 0.08);
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog_card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.12);
}

.blog_card_media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(16, 32, 51, 0.08);
}

.blog_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog_card_body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog_card_title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: rgba(16, 32, 51, 0.96);
}

.blog_card_excerpt {
  margin: 0;
  color: rgba(16, 32, 51, 0.72);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 19px;
}

.blog_card_actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.blog_modal {
  width: min(920px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.blog_modal::backdrop {
  background: rgba(0, 0, 0, 0.48);
}

.blog_modal_inner {
  display: grid;
  grid-template-columns: 1fr;
}

.blog_modal_close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: rgba(16, 32, 51, 0.9);
  color: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.blog_modal_media {
  background: rgba(16, 32, 51, 0.08);
  max-height: 340px;
}

.blog_modal_img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.blog_modal_body {
  padding: 18px 18px 20px;
}

.blog_modal_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.blog_share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog_share_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog_modal_title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  color: rgba(16, 32, 51, 0.96);
}

.blog_modal_content {
  color: rgba(16, 32, 51, 0.74);
  line-height: 1.75;
  font-size: 19px;
}

.blog_modal_content p {
  margin: 0 0 14px;
}

.blog_modal_actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 980px) {
  .blog_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog_featured {
    grid-template-columns: 1fr;
  }
  .blog_featured_media {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .blog_grid {
    grid-template-columns: 1fr;
  }
  .blog_featured_title {
    font-size: 26px;
  }
}

/* Blog modal scroll lock fix, mobile friendly */
html.modal_open,
body.modal_open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

.blog_modal {
  padding: 0;
}

.blog_modal_inner {
  display: flex;
  flex-direction: column;
}

.blog_modal_body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Mobile, make the dialog behave like a full screen sheet */
@media (max-width: 768px) {
  .blog_modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .blog_modal_inner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .blog_modal_media {
    max-height: 240px;
  }

  .blog_modal_img {
    max-height: 240px;
  }

  .blog_modal_body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .blog_modal_actions {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

/* /css/about_us.css */

.page_about .page {
  min-height: 60vh;
}

/* Hero */
.about_hero {
  background: radial-gradient(
      900px 480px at 20% 0%,
      rgba(245, 158, 11, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(10, 33, 67, 1), rgba(16, 32, 51, 1));
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.about_hero_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.about_hero_copy {
  min-width: 0;
}

.about_hero_title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.about_hero_subtitle {
  margin: 14px 0 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.about_hero_actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn_ghost_on_dark {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn_ghost_on_dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.about_hero_note {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.5;
}

.about_hero_note .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.9;
}

/* Hero card */
.about_hero_card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(10px);
}

.about_hero_card_top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about_hero_card_top .material-symbols-outlined {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.about_hero_card_title {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.about_hero_card_body {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 18px;
}

.about_hero_stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about_stat {
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.about_stat_num {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.about_stat_label {
  margin-top: 2px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

/* Body layout */
.about_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.about_richtext p {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.85;
  font-size: 19px;
}

.about_side {
  position: sticky;
  top: 96px;
}

.about_side_card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  padding: 16px;
}

.about_side_head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.about_side_title {
  font-weight: 900;
  color: #0a2143;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.about_side_sub {
  margin-top: 4px;
  color: rgba(71, 85, 105, 0.95);
  font-size: 18px;
}

.about_side_list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about_side_item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.6;
  font-size: 18px;
}

.about_side_item .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.7;
  margin-top: 2px;
}

.about_side_cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.about_side_hint {
  margin: 10px 0 0;
  font-size: 16px;
  color: rgba(71, 85, 105, 0.95);
}

/* Pillars */
.about_pillars_head {
  margin-bottom: 14px;
}

.about_pillars_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about_pillar {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.05);
  padding: 16px;
}

.about_pillar_icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 33, 67, 0.08);
  border: 1px solid rgba(10, 33, 67, 0.12);
  color: #0a2143;
}

.about_pillar_icon .material-symbols-outlined {
  font-size: 22px;
}

.about_pillar_title {
  margin: 10px 0 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0a2143;
  font-size: 18px;
}

.about_pillar_text {
  margin: 8px 0 0;
  color: rgba(71, 85, 105, 0.95);
  line-height: 1.75;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .about_hero {
    padding: 56px 0;
  }

  .about_hero_grid {
    grid-template-columns: 1fr;
  }

  .about_layout {
    grid-template-columns: 1fr;
  }

  .about_side {
    position: static;
  }

  .about_pillars_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .about_hero_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about_hero_actions .btn {
    width: 100%;
  }

  .about_hero_stats {
    grid-template-columns: 1fr;
  }

  .about_richtext p {
    font-size: 18px;
  }
}

/* Contact us page styles */

/* /css/contact_us.css */

.page_contact .page {
  min-height: 60vh;
}

/* Hero */
.contact_hero {
  background: radial-gradient(
      900px 480px at 20% 0%,
      rgba(245, 158, 11, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(10, 33, 67, 1), rgba(16, 32, 51, 1));
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.contact_hero_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact_hero_copy {
  min-width: 0;
}

.contact_hero_title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.contact_hero_subtitle {
  margin: 14px 0 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.contact_hero_subtitle_muted {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact_quick {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact_quick_item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.contact_quick_item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.contact_quick_item_static:hover {
  transform: none;
}

.contact_quick_item .material-symbols-outlined {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
  opacity: 0.95;
}

.contact_quick_label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact_quick_value {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

/* Hero card */
.contact_hero_card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(10px);
}

.contact_hero_card_icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 12px;
}

.contact_hero_card_icon .material-symbols-outlined {
  font-size: 22px;
}

.contact_hero_card_title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact_hero_card_text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 14px;
}

/* Layout */
.contact_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.contact_card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  padding: 16px;
}

.contact_card_compact {
  padding: 16px;
}

.contact_card_head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 12px;
}

.contact_card_title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0a2143;
  font-size: 18px;
}

.contact_card_sub {
  margin: 6px 0 0;
  color: rgba(71, 85, 105, 0.95);
  font-size: 13px;
  line-height: 1.6;
}

/* Form */
.contact_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field_full {
  grid-column: 1 / -1;
}

.field_label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.88);
}

.field_input,
.field_textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(246, 248, 251, 0.65);
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  color: rgba(15, 23, 42, 0.92);
}

.field_textarea {
  resize: vertical;
  min-height: 140px;
  padding: 12px 12px;
}

.field_input:focus,
.field_textarea:focus {
  border-color: rgba(10, 33, 67, 0.35);
  box-shadow: 0 0 0 4px rgba(10, 33, 67, 0.12);
}

.field_hint {
  margin: 0;
  font-size: 12px;
  color: rgba(239, 68, 68, 0.95);
  min-height: 14px;
}

.contact_form_actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact_submit {
  min-width: 180px;
}

.contact_form_note {
  margin: 0;
  font-size: 13px;
  color: rgba(71, 85, 105, 0.95);
}

/* Direct list */
.contact_direct_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact_direct {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(246, 248, 251, 0.6);
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
}

.contact_direct .material-symbols-outlined {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 33, 67, 0.08);
  border: 1px solid rgba(10, 33, 67, 0.12);
  color: #0a2143;
  font-size: 20px;
}

.contact_direct_label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(71, 85, 105, 0.95);
}

.contact_direct_value {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
}

/* Map */
.contact_map_card {
  overflow: hidden;
  padding: 0;
}

.contact_map iframe {
  width: 100%;
  height: 360px;
  display: block;
}

/* Responsive */
@media (max-width: 980px) {
  .contact_hero {
    padding: 56px 0;
  }

  .contact_hero_grid {
    grid-template-columns: 1fr;
  }

  .contact_quick {
    grid-template-columns: 1fr;
  }

  .contact_grid {
    grid-template-columns: 1fr;
  }

  .contact_fields {
    grid-template-columns: 1fr;
  }

  .contact_map iframe {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .contact_map iframe {
    height: 280px;
  }

  .contact_submit {
    width: 100%;
  }
}

/* =========================
   Legal pages, Accessibility, Privacy
   Restores layout and typography
   ========================= */

.page_accessibility .section,
.page_privacy .section,
.page_legal .section {
  padding: 64px 0;
}

.page_accessibility .container,
.page_privacy .container,
.page_legal .container {
  max-width: 1100px;
}

/* Section head */
.page_accessibility .section_head,
.page_privacy .section_head,
.page_legal .section_head {
  margin-bottom: 18px;
}

.page_accessibility .kicker,
.page_privacy .kicker,
.page_legal .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 33, 67, 0.08);
  border: 1px solid rgba(10, 33, 67, 0.14);
  color: #0a2143;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.page_accessibility .section_title,
.page_privacy .section_title,
.page_legal .section_title {
  margin: 14px 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: rgba(15, 23, 42, 0.95);
}

.page_accessibility .section_subtitle,
.page_privacy .section_subtitle,
.page_legal .section_subtitle {
  margin: 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(71, 85, 105, 0.95);
}

/* Cards */
.page_accessibility .content_card,
.page_privacy .content_card,
.page_legal .content_card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 16px;
  padding: 22px;
  margin-top: 16px;
  box-shadow: 0 18px 40px rgba(2, 6, 16, 0.06);
}

.page_accessibility .content_title,
.page_privacy .content_title,
.page_legal .content_title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.page_accessibility .content_text,
.page_privacy .content_text,
.page_legal .content_text {
  margin: 0;
  line-height: 1.9;
  color: rgba(16, 32, 51, 0.82);
  font-size: 15px;
}

/* Lists, RTL friendly */
.page_accessibility .content_list,
.page_privacy .content_list,
.page_legal .content_list {
  margin: 0;
  padding-right: 18px;
  padding-left: 0;
  line-height: 1.9;
  color: rgba(16, 32, 51, 0.82);
  font-size: 15px;
}

.page_accessibility .content_list li,
.page_privacy .content_list li,
.page_legal .content_list li {
  margin: 6px 0;
}

/* Contact key value block, keep your existing KV rules working */
.page_accessibility .contact_kv,
.page_privacy .contact_kv,
.page_legal .contact_kv {
  margin-top: 12px;
}

.page_accessibility .contact_kv_row,
.page_privacy .contact_kv_row,
.page_legal .contact_kv_row {
  border: 1px solid rgba(16, 32, 51, 0.06);
}

.page_accessibility .contact_kv_value a,
.page_privacy .contact_kv_value a,
.page_legal .contact_kv_value a {
  color: #0a2143;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA end block */
.page_accessibility .cta_end,
.page_privacy .cta_end,
.page_legal .cta_end {
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid rgba(10, 33, 67, 0.12);
  background: linear-gradient(180deg, rgba(10, 33, 67, 0.06), rgba(10, 33, 67, 0.03));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.page_accessibility .cta_end_title,
.page_privacy .cta_end_title,
.page_legal .cta_end_title {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.page_accessibility .cta_end_text,
.page_privacy .cta_end_text,
.page_legal .cta_end_text {
  margin: 6px 0 0;
  color: rgba(71, 85, 105, 0.95);
  font-size: 14px;
  line-height: 1.7;
}

/* Strong focus outline for keyboard users */
.page_accessibility a:focus-visible,
.page_accessibility button:focus-visible,
.page_accessibility input:focus-visible,
.page_accessibility textarea:focus-visible,
.page_privacy a:focus-visible,
.page_privacy button:focus-visible,
.page_privacy input:focus-visible,
.page_privacy textarea:focus-visible,
.page_legal a:focus-visible,
.page_legal button:focus-visible,
.page_legal input:focus-visible,
.page_legal textarea:focus-visible {
  outline: 3px solid rgba(10, 33, 67, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .page_accessibility .section,
  .page_privacy .section,
  .page_legal .section {
    padding: 56px 0;
  }
}

@media (max-width: 520px) {
  .page_accessibility .content_card,
  .page_privacy .content_card,
  .page_legal .content_card {
    padding: 18px;
  }

  .page_accessibility .section_subtitle,
  .page_privacy .section_subtitle,
  .page_legal .section_subtitle {
    font-size: 15px;
  }
}

/* =========================
   Legal pages, include privacy body class
   ========================= */

.page_site_policy .section {
  padding: 64px 0;
}

.page_site_policy .container {
  max-width: 1100px;
}

.page_site_policy .section_head {
  margin-bottom: 18px;
}

.page_site_policy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 33, 67, 0.08);
  border: 1px solid rgba(10, 33, 67, 0.14);
  color: #0a2143;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.page_site_policy .section_title {
  margin: 14px 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: rgba(15, 23, 42, 0.95);
}

.page_site_policy .section_subtitle {
  margin: 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(71, 85, 105, 0.95);
}

.page_site_policy .content_card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 16px;
  padding: 22px;
  margin-top: 16px;
  box-shadow: 0 18px 40px rgba(2, 6, 16, 0.06);
}

.page_site_policy .content_title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.page_site_policy .content_text {
  margin: 0;
  line-height: 1.9;
  color: rgba(16, 32, 51, 0.82);
  font-size: 15px;
}

/* Lists, RTL */
.page_site_policy .content_list {
  margin: 0;
  padding-right: 18px;
  padding-left: 0;
  line-height: 1.9;
  color: rgba(16, 32, 51, 0.82);
  font-size: 15px;
}

.page_site_policy .content_list li {
  margin: 6px 0;
}

.page_site_policy .contact_kv {
  margin-top: 12px;
}

.page_site_policy .contact_kv_row {
  border: 1px solid rgba(16, 32, 51, 0.06);
}

.page_site_policy .contact_kv_value a {
  color: #0a2143;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA end */
.page_site_policy .cta_end {
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid rgba(10, 33, 67, 0.12);
  background: linear-gradient(
    180deg,
    rgba(10, 33, 67, 0.06),
    rgba(10, 33, 67, 0.03)
  );
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.page_site_policy .cta_end_title {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.page_site_policy .cta_end_text {
  margin: 6px 0 0;
  color: rgba(71, 85, 105, 0.95);
  font-size: 14px;
  line-height: 1.7;
}

/* Keyboard focus */
.page_site_policy a:focus-visible,
.page_site_policy button:focus-visible,
.page_site_policy input:focus-visible,
.page_site_policy textarea:focus-visible {
  outline: 3px solid rgba(10, 33, 67, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .page_site_policy .section {
    padding: 56px 0;
  }
}

@media (max-width: 520px) {
  .page_site_policy .content_card {
    padding: 18px;
  }

  .page_site_policy .section_subtitle {
    font-size: 15px;
  }
}
/* =========================
   GDPR Cookies, restored UI
   Matches your exact HTML
   ========================= */

/* Banner, dark liquid glass */
.cookie_banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1100px;
  width: calc(100% - 40px);
  z-index: 9999;

  background: linear-gradient(
    180deg,
    rgba(20, 28, 45, 0.92),
    rgba(14, 22, 38, 0.88)
  );
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: #ffffff;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cookie_inner {
  display: flex;
  gap: 18px;
  padding: 18px 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie_text {
  max-width: 720px;
}

.cookie_text h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.cookie_text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cookie_text a {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 18px;
}

.cookie_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Keep existing button system but make banner buttons readable on dark */
.cookie_banner .btn.btn_light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie_banner .btn.btn_light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cookie_banner .btn.btn_primary {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

/* Modal, dark liquid glass */
.cookie_modal {
  padding: 0;
  border: none;
  border-radius: 18px;
  max-width: 560px;
  width: calc(100% - 40px);

  background: linear-gradient(
    180deg,
    rgba(20, 28, 45, 0.92),
    rgba(14, 22, 38, 0.88)
  );
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cookie_modal::backdrop {
  background: rgba(2, 6, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie_modal_inner {
  padding: 22px 22px;
}

.cookie_modal_inner h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

/* Options, keep your span, strong, br HTML */
.cookie_option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
  cursor: pointer;

  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cookie_option input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #ffffff;
}

.cookie_option span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  font-size: 18px;
}

.cookie_option strong {
  display: inline-block;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 2px;
  font-size: 18px;
}

/* Actions */
.cookie_modal_actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Make modal buttons readable on dark */
.cookie_modal .btn.btn_light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie_modal .btn.btn_light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cookie_modal .btn.btn_primary {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 820px) {
  .cookie_inner {
    padding: 16px;
    gap: 14px;
  }

  .cookie_text {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .cookie_banner {
    bottom: 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .cookie_inner {
    padding: 14px;
  }

  .cookie_actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie_modal {
    width: calc(100% - 24px);
    border-radius: 16px;
  }

  .cookie_modal_inner {
    padding: 18px;
  }

  .cookie_modal_actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie_modal_actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hebrew RTL */

html[dir="rtl"] .bullets {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .kicker::before {
  order: 2;
}

/* Hebrew FAQ */
html[dir="rtl"] body {
  direction: rtl;
}

.faq_q {
  text-align: right;
}

.faq_search_input {
  padding: 14px 46px 14px 14px;
}

.faq_search_icon {
  left: auto;
  right: 14px;
}

.faq_nav_link {
  justify-content: flex-start;
}

.faq_sidebar_title {
  letter-spacing: 0.08em;
}