.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/SVGLogo4.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 50%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(48% 60% at 50% 46%, rgba(251, 118, 30, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 230, 213, 0.18), rgba(255, 230, 213, 0.04));
  pointer-events: none;
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1,
.about-hero h2 {
  color: var(--site-turquoise);
  text-shadow: 0 1px 24px rgba(255, 255, 255, 0.48);
}

.presentation-content {
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.presentation-content p:last-child {
  color: var(--site-turquoise-soft);
  font-size: 1rem;
  line-height: var(--size-line-height-md);
}

.expertise-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.expertise-strip a {
  padding: 8px 12px;
  border: var(--size-border-thin) solid var(--color-border);
  border-radius: 999px;
  background: var(--site-surface-strong);
  color: var(--site-turquoise);
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}

.expertise-strip a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.faq-item { border-bottom: var(--size-border-thin) solid var(--color-border-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--size-table-padding);
  background: none;
  border: none;
  font-size: var(--size-text-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 var(--size-table-padding) var(--size-table-padding);
  color: var(--site-turquoise-soft);
}
.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 340px;
  }

  .about-hero::before {
    background-size: contain;
    opacity: 0.1;
  }
}
