﻿.about-page {
  min-height: 100vh;
  position: relative;
}

.about-page .site-header,
.about-page .about-main,
.about-page .site-footer {
  position: relative;
  z-index: 2;
}

.about-page .site-header {
  position: sticky;
  top: 0;
  z-index: 14;
  background: rgb(255 255 255 / 78%);
  backdrop-filter: blur(8px);
}

.main-nav .active-link {
  color: var(--brand);
  font-weight: 800;
}

.about-main {
  padding: 18px 0 52px;
}

.about-hero {
  padding: 8px 0 8px;
}

.about-hero .container,
.about-content .container,
.about-faq .container {
  border: 1px solid rgb(202 218 228 / 80%);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / 30%), rgb(249 253 255 / 20%));
  box-shadow: 0 16px 34px rgb(7 24 33 / 18%);
  backdrop-filter: blur(10px);
  padding: clamp(14px, 2.2vw, 22px);
}

.about-hero h1 {
  margin-bottom: 8px;
  color: #050709;
}

.about-hero .eyebrow {
  color: #050709;
}

.about-hero .section-copy {
  color: #050709;
}

.about-content {
  padding: 6px 0 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-card {
  border: 1px solid rgb(205 219 228 / 96%);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(255 255 255 / 34%), rgb(250 253 255 / 22%));
  padding: 16px;
  box-shadow: 0 12px 28px rgb(19 32 41 / 14%);
  backdrop-filter: blur(2px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.about-card:hover {
  transform: translateY(-2px);
  border-color: #b8d3df;
  box-shadow: 0 16px 34px rgb(19 32 41 / 18%);
}

.about-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #050709;
}

.about-card p {
  margin: 0;
  color: #050709;
  line-height: 1.68;
}

.about-faq {
  padding: 8px 0;
}

.about-faq h2 {
  margin-bottom: 12px;
  color: #050709;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgb(205 219 228 / 96%);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(255 255 255 / 36%), rgb(251 253 255 / 24%));
  padding: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: #b8d3df;
  box-shadow: 0 12px 26px rgb(19 32 41 / 14%);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #050709;
}

.faq-item p {
  margin: 0;
  color: #050709;
  line-height: 1.62;
}

@media (max-width: 820px) {
  .about-main {
    padding-bottom: 34px;
  }

  .about-hero .container,
  .about-content .container,
  .about-faq .container {
    border-radius: 14px;
    padding: 14px;
  }

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