 .page-hero {
    height: 45vh;
    background: #000;
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
    margin-top: 52px;
  }
  .page-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    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;
  }
  .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.2rem, 2.5vw, 1.7rem);
    font-weight: bold;
    line-height: 1.5;
    color: #111;
    margin-bottom: 24px;
  }
  .body-text {
    font-size: 15px;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
  }
  .divider { height: 1px; background: #eee; margin: 40px 0; }
  .policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
    margin: 24px 0;
  }
  .policy-card { background: #fff; padding: 28px; }
  .policy-flag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .policy-title {
    font-size: 13px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .policy-delay {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    line-height: 1;
  }
  .policy-desc { font-size: 13px; color: #666; line-height: 1.9; }
  .steps { margin: 24px 0; }
  .step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
  }
  .step:last-child { border-bottom: none; }
  .step-number {
    width: 34px;
    height: 34px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
    letter-spacing: 1px;
  }
  .step-content h4 {
    font-size: 13px;
    font-weight: bold;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .step-content p { font-size: 13px; color: #666; line-height: 1.9; }
  .warning-box {
    border-left: 3px solid #000;
    padding: 20px 24px;
    margin: 20px 0;
    background: #fafafa;
  }
  .warning-box h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 12px;
    font-weight: bold;
  }
  .warning-box ul { list-style: none; padding: 0; }
  .warning-box ul li {
    font-size: 13px;
    color: #555;
    line-height: 2;
    padding-left: 16px;
    position: relative;
  }
  .warning-box ul li::before { content: '—'; position: absolute; left: 0; color: #bbb; }
  .warning-box.danger { border-left-color: #c0392b; }
  .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; }
  @media (max-width: 600px) {
    .policy-grid { grid-template-columns: 1fr; }
  }

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