.contact-container {
      max-width: 900px;
      margin: 80px auto;
      padding: 40px 20px;
    }
    .contact-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .contact-header h1 {
      font-family: var(--font-display);
      font-size: 2.5em;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .contact-header p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 1.1em;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 60px;
    }
    .contact-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 32px;
      transition: all 0.2s;
    }
    .contact-card:hover {
      border-color: var(--accent);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    .contact-card h3 {
      font-family: var(--font-display);
      font-size: 1.4em;
      margin-bottom: 16px;
      color: var(--text);
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .info-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .info-label {
      font-size: 0.85em;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--muted);
      font-weight: 600;
    }
    .info-value {
      color: var(--text);
      font-size: 1.1em;
      line-height: 1.6;
    }
    .info-value a {
      color: var(--accent);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .info-value a:hover {
      opacity: 0.8;
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .contact-container {
        margin: 40px auto;
        padding: 20px;
      }
      .contact-header h1 {
        font-size: 2em;
      }
    }
