:root {
  --faq-bg: rgba(196, 204, 244, 0.04);
  --faq-border: rgba(196, 204, 244, 0.08);
  --faq-hover: rgba(196, 204, 244, 0.08);
  --faq-active: rgba(196, 204, 244, 0.12);
  --faq-text: #fafbfc;
  --faq-text-secondary: rgba(255, 255, 255, 0.64);
  --faq-accent: #dd7362;
  --faq-success: #6ee8a8;
  --faq-radius: 20px;
  --faq-radius-sm: 12px;
}

/* ===================== GLOBAL OVERFLOW GUARD ===================== */
.faq-section,
.faq-page-wrapper,
.about-page-wrapper {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ===================== FAQ SECTION ON INDEX.HTML ===================== */
.faq-section {
  margin-top: 80px;
  margin-bottom: 0;
  padding: 0 16px 60px;
  width: 100%;
  position: relative;
}

.faq-section::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196, 204, 244, 0.15),
    transparent
  );
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===================== H1 HERO TITLE ===================== */
.faq-hero-title {
  font-family: Saans, sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--faq-text);
  text-align: center;
  margin: 0 0 12px;
  padding: 0;
}

.faq-hero-title .accent-word {
  color: rgba(255, 255, 255, 0.4);
}

.faq-hero-subtitle {
  font-family: Saans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--faq-text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0;
}

/* ===================== FAQ HEADING LABEL ===================== */
.faq-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--faq-accent);
  margin-bottom: 16px;
}

/* ===================== FAQ ACCORDION LIST ===================== */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ===================== FAQ ACCORDION ITEM ===================== */
.faq-item {
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(196, 204, 244, 0.14);
  background: var(--faq-hover);
}

.faq-item.faq-open {
  border-color: rgba(196, 204, 244, 0.14);
  background: var(--faq-active);
}

/* ===================== FAQ QUESTION BUTTON ===================== */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  box-sizing: border-box;
}

.faq-question h2 {
  font-family: Saans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--faq-text);
  margin: 0;
  padding: 0;
  flex: 1;
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question h2,
.faq-item.faq-open .faq-question h2 {
  color: #ffffff;
}

/* ===================== FAQ CHEVRON ICON ===================== */
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faq-text-secondary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px;
  box-sizing: border-box;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  display: block;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--faq-text);
  background: rgba(255, 255, 255, 0.1);
}

/* ===================== FAQ ANSWER PANEL ===================== */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.faq-open .faq-answer-wrapper {
  opacity: 1;
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer h3 {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--faq-text-secondary);
  margin: 0;
  padding: 0;
}

.faq-answer p {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--faq-text-secondary);
  margin: 8px 0 0;
  padding: 0;
}

.faq-answer a {
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-answer a:hover {
  color: #e8887a;
  border-bottom-color: rgba(221, 115, 98, 0.4);
}

/* ===================== FAQ DIVIDER INSIDE ANSWER ===================== */
.faq-answer-divider {
  height: 1px;
  background: var(--faq-border);
  margin: 0 24px 0;
}

/* ===================== FAQ BOTTOM NAV LINKS ===================== */
.faq-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.faq-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--faq-text-secondary);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 204, 244, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(196, 204, 244, 0.16);
}

.faq-nav-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-nav-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  user-select: none;
}

/* ===================== PAGE WRAPPER (FAQ + ABOUT PAGES) ===================== */
.faq-page-wrapper,
.about-page-wrapper {
  min-height: 100vh;
  background-color: #070808;
  background-image: radial-gradient(
    149.77% 121.37% at 50% -51.28%,
    rgb(76, 88, 118) 0%,
    rgb(0, 0, 0) 100%
  );
  background-attachment: fixed;
  color: #fafbfc;
  font-family: Saans, sans-serif;
}

/* ===================== PAGE HEADER NAV ===================== */
.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 204, 244, 0.06);
  box-sizing: border-box;
}

.page-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fafbfc;
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
}

.page-header-logo svg {
  width: 92px;
  height: 33px;
  flex-shrink: 0;
}

.page-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-header-nav a {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 9999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.page-header-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fafbfc;
}

.page-header-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fafbfc;
}

/* ===================== PAGE CONTENT CONTAINER ===================== */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 16px 80px;
  width: 100%;
  box-sizing: border-box;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  text-align: center;
  margin-bottom: 56px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--faq-accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: Saans, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #fafbfc;
  margin: 0 0 16px;
  padding: 0;
}

.page-hero h1 .muted {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.64);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== FAQ PAGE ACCORDION ===================== */
.faq-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-page-item {
  background: rgba(196, 204, 244, 0.04);
  border: 1px solid rgba(196, 204, 244, 0.08);
  border-radius: var(--faq-radius);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-page-item:hover {
  border-color: rgba(196, 204, 244, 0.14);
  background: rgba(196, 204, 244, 0.07);
}

.faq-page-item.faq-open {
  border-color: rgba(196, 204, 244, 0.14);
  background: rgba(196, 204, 244, 0.1);
}

.faq-page-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  box-sizing: border-box;
}

.faq-page-question h2 {
  font-family: Saans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #fafbfc;
  margin: 0;
  padding: 0;
  flex: 1;
}

.faq-page-item.faq-open .faq-page-question h2 {
  color: #ffffff;
}

.faq-page-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.64);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px;
  box-sizing: border-box;
}

.faq-page-chevron svg {
  width: 14px;
  height: 14px;
  display: block;
}

.faq-page-item.faq-open .faq-page-chevron {
  transform: rotate(180deg);
  color: #fafbfc;
  background: rgba(255, 255, 255, 0.1);
}

.faq-page-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-page-item.faq-open .faq-page-answer-wrapper {
  opacity: 1;
}

.faq-page-answer {
  padding: 0 24px 24px;
}

.faq-page-answer p,
.faq-page-answer h3 {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 0 10px;
  padding: 0;
}

.faq-page-answer p:last-child,
.faq-page-answer h3:last-child {
  margin-bottom: 0;
}

.faq-page-answer a {
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-page-answer a:hover {
  color: #e8887a;
  border-bottom-color: rgba(221, 115, 98, 0.4);
}

.faq-divider-line {
  height: 1px;
  background: rgba(196, 204, 244, 0.06);
  margin: 0 24px;
}

/* ===================== FAQ PAGE CATEGORY BADGE ===================== */
.faq-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 204, 244, 0.08);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ===================== FAQ CATEGORY SECTIONS ===================== */
.faq-category-section {
  margin-bottom: 40px;
}

.faq-category-title {
  font-family: Saans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(196, 204, 244, 0.06);
}

/* ===================== PAGE BOTTOM NAV ===================== */
.page-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(196, 204, 244, 0.06);
  flex-wrap: wrap;
}

.page-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.page-bottom-btn-primary {
  background: #fafbfc;
  color: #070808;
  border: 1px solid transparent;
}

.page-bottom-btn-primary:hover {
  background: #ffffff;
  color: #000000;
}

.page-bottom-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(196, 204, 244, 0.1);
}

.page-bottom-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fafbfc;
  border-color: rgba(196, 204, 244, 0.18);
}

.page-bottom-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===================== ABOUT PAGE SECTIONS ===================== */
.about-section {
  margin-bottom: 56px;
}

.about-section-title {
  font-family: Saans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #fafbfc;
  margin: 0 0 16px;
  padding: 0;
}

.about-section-body {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.64);
}

.about-section-body p {
  margin: 0 0 14px;
  padding: 0;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

.about-section-body a {
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-section-body a:hover {
  color: #e8887a;
  border-bottom-color: rgba(221, 115, 98, 0.4);
}

/* ===================== ABOUT FEATURE CARDS ===================== */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-card {
  background: rgba(196, 204, 244, 0.04);
  border: 1px solid rgba(196, 204, 244, 0.08);
  border-radius: var(--faq-radius);
  padding: 24px;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.about-card:hover {
  border-color: rgba(196, 204, 244, 0.14);
  background: rgba(196, 204, 244, 0.07);
}

.about-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(221, 115, 98, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--faq-accent);
  flex-shrink: 0;
}

.about-card-icon svg {
  width: 18px;
  height: 18px;
}

.about-card-title {
  font-family: Saans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fafbfc;
  margin: 0 0 8px;
  padding: 0;
}

.about-card-body {
  font-family: Saans, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.56);
  margin: 0;
  padding: 0;
}

/* ===================== ABOUT STATS ROW ===================== */
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.about-stat-item {
  flex: 1;
  min-width: 140px;
  background: rgba(196, 204, 244, 0.04);
  border: 1px solid rgba(196, 204, 244, 0.08);
  border-radius: var(--faq-radius-sm);
  padding: 20px 24px;
  box-sizing: border-box;
}

.about-stat-value {
  font-family: Saans, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: #fafbfc;
  display: block;
  margin-bottom: 4px;
}

.about-stat-label {
  font-family: Saans, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
}

/* ===================== ABOUT TEAM SECTION ===================== */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-team-card {
  background: rgba(196, 204, 244, 0.04);
  border: 1px solid rgba(196, 204, 244, 0.08);
  border-radius: var(--faq-radius);
  padding: 24px;
  text-align: center;
  box-sizing: border-box;
}

.about-team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: rgba(221, 115, 98, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  font-weight: 400;
  color: var(--faq-accent);
  outline: 2px solid rgba(196, 204, 244, 0.1);
  outline-offset: 2px;
}

.about-team-name {
  font-family: Saans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fafbfc;
  margin: 0 0 4px;
  padding: 0;
}

.about-team-role {
  font-family: Saans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  padding: 0;
}

/* ===================== PAGE FOOTER ===================== */
.page-footer {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid rgba(196, 204, 244, 0.06);
  background: transparent;
}

.page-footer p {
  font-family: Saans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
  padding: 0;
}

.page-footer a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===================== BREADCRUMB ===================== */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.page-breadcrumb a {
  font-family: Saans, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.24);
  font-size: 13px;
  user-select: none;
}

.page-breadcrumb-current {
  font-family: Saans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.64);
}

/* ===================== INLINE LINK STYLE ===================== */
.inline-link {
  color: var(--faq-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-weight: 500;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover {
  color: #e8887a;
  border-bottom-color: rgba(221, 115, 98, 0.4);
}

/* ===================== HIGHLIGHT TEXT ===================== */
.text-highlight {
  color: var(--faq-success);
}

.text-accent {
  color: var(--faq-accent);
}

/* ===================== SCROLLBAR FOR SUBPAGES ===================== */
.faq-page-wrapper *,
.about-page-wrapper * {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.faq-page-wrapper *::-webkit-scrollbar,
.about-page-wrapper *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.faq-page-wrapper *::-webkit-scrollbar-track,
.about-page-wrapper *::-webkit-scrollbar-track {
  background: transparent;
}

.faq-page-wrapper *::-webkit-scrollbar-thumb,
.about-page-wrapper *::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 3px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
  .faq-section {
    margin-top: 48px;
    padding: 0 12px 48px;
  }

  .faq-section::before {
    margin-bottom: 40px;
  }

  .faq-hero-subtitle {
    margin-bottom: 36px;
    font-size: 14px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h2 {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-answer h3,
  .faq-answer p {
    font-size: 13px;
  }

  .faq-nav-links {
    margin-top: 36px;
    gap: 8px;
  }

  .page-content {
    padding: 36px 12px 64px;
  }

  .page-hero {
    margin-bottom: 36px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

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

  .about-stats-row {
    flex-direction: column;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header {
    height: 44px;
  }

  .faq-page-question {
    padding: 16px 18px;
  }

  .faq-page-question h2 {
    font-size: 14px;
  }

  .faq-page-answer {
    padding: 0 18px 18px;
  }

  .faq-page-answer p,
  .faq-page-answer h3 {
    font-size: 13px;
  }

  .page-bottom-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .page-bottom-btn {
    justify-content: center;
  }

  .faq-hero-title {
    font-size: clamp(26px, 7vw, 40px);
  }
}

@media (min-width: 768px) {
  .faq-section {
    padding: 0 28px 80px;
  }

  .page-content {
    padding: 64px 28px 96px;
  }

  .page-header {
    padding: 0 28px;
  }

  .about-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats-row {
    flex-wrap: nowrap;
  }
}