.about-wrap {
  padding: 112px 0 44px;
}

.about-card {
  max-width: 940px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(202, 160, 110, 0.18);
  border-radius: 22px;
  padding: 40px 40px 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-card h1 {
  margin: 0 0 16px;
  color: var(--brown-deep);
  font-size: 2rem;
  font-weight: 900;
}

.about-card h2 {
  margin: 32px 0 12px;
  color: var(--brown-deep);
  font-size: 1.3rem;
  font-weight: 800;
}

.about-card h3 {
  margin: 28px 0 10px;
  color: var(--brown-deep);
  font-size: 1.15rem;
  font-weight: 800;
}

.about-card p {
  line-height: 1.9;
  margin: 0 0 16px;
  opacity: 0.94;
  font-size: 1rem;
}

.about-card ul {
  margin: 16px 0;
  padding-right: 24px;
  line-height: 1.9;
}

.about-card li {
  margin-bottom: 10px;
  opacity: 0.94;
}

.about-hero {
  margin: 20px 0 24px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(202, 160, 110, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.about-hero .tagline {
  font-weight: 900;
  color: var(--brown-deep);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.about-hero .sub {
  opacity: 0.9;
  font-size: 1rem;
}

.values-list {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.value-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(202, 160, 110, 0.14);
  background: rgba(255, 255, 255, 0.48);
}

.value-item strong {
  display: block;
  color: var(--brown-deep);
  font-weight: 900;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.support-section {
  margin: 32px 0;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(202, 160, 110, 0.16);
  background: rgba(255, 255, 255, 0.52);
}

.support-section h3 {
  margin-top: 0;
}

.support-email-link {
  display: inline-block;
  color: var(--brown-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 8px 0;
  padding: 8px 0;
  border-bottom: 2px solid rgba(202, 160, 110, 0.3);
  transition: border-bottom-color 0.2s ease;
}

.support-email-link:hover {
  border-bottom-color: var(--brown-deep);
}

.divider {
  height: 1px;
  border: 0;
  margin: 24px 0;
  background: linear-gradient(
    to left,
    transparent,
    rgba(202, 160, 110, 0.22),
    transparent
  );
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(202, 160, 110, 0.2);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.85;
}

@media (max-width: 860px) {
  .values-list {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 30px 24px 24px;
  }
}
    </style>
