  .page-hero {
    height: 45vh;
    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: 760px;
    margin: 0 auto;
    padding: 80px 40px;
  }
  .faq-group { margin-bottom: 50px; }
  .faq-group-title {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    font-weight: normal;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
  }
  .faq-item { border-bottom: 1px solid #f0f0f0; }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #111;
    letter-spacing: 0.3px;
    gap: 16px;
    user-select: none;
  }
  .faq-question:hover { color: #555; }
  .faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #bbb;
    font-weight: normal;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: #000; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer-inner {
    padding-bottom: 18px;
    font-size: 14px;
    line-height: 2;
    color: #555;
  }
  .faq-answer-inner a { color: #000; text-decoration: underline; }
  .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);
  }
  .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; }

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