  .page-hero {
    height: 55vh;
    background: #000;
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
    margin-top: 52px;
  }
  .page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
  }
  .page-hero-sub {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
  }
  .page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 40px;
  }
  .sect-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    font-weight: normal;
  }
  .big-text {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: bold;
    line-height: 1.5;
    color: #111;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }
  .body-text {
    font-size: 15px;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
  }
  .divider { height: 1px; background: #eee; margin: 50px 0; }
  .manifesto {
    border-left: 3px solid #000;
    padding: 10px 0 10px 28px;
    margin: 30px 0;
  }
  .manifesto p {
    font-size: 15px;
    line-height: 2.2;
    color: #222;
    font-style: italic;
  }
  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #eee;
    margin: 24px 0;
  }
  .value-card {
    padding: 28px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .value-card:nth-child(2n) { border-right: none; }
  .value-card:nth-last-child(-n+2) { border-bottom: none; }
  .value-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 12px;
  }
  .value-title {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
  }
  .value-desc {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
  }
  .highlight-block {
    background: #000;
    color: #fff;
    padding: 40px;
    margin: 40px 0;
  }
  .highlight-block p {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.85;
    font-style: italic;
  }
  .highlight-block span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 20px;
  }
  .back-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    margin-top: 40px;
    transition: opacity 0.2s;
  }
  .back-link:hover { opacity: 0.5; }
  @media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .value-card { border-right: none; }
  }

  .social-icons{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a{
    font-size: 28px;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-icons a:hover{
    transform: translateY(-4px);
}
