.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; }
  .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;
  }
  .acronym-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
  }
  .acronym-list li {
    font-size: 15px;
    line-height: 2.2;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
  }
  .acronym-list li strong {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-right: 8px;
  }
  .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; }

  .contact-box {
    background: #000;
    color: #fff;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
  }
  .contact-box h3 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 14px;
    opacity: 0.6;
  }
  .contact-box p {
    font-size: 14px;
    opacity: 0.6;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .contact-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .contact-link {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    transition: opacity 0.2s;
  }
  .contact-link:hover { opacity: 0.7; }
  .contact-link.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
  }

  .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);
}