.contact-page{
    background:#ffffff;
  }
  
  /* HERO */
  
  .contact-hero{
    padding:64px 0 36px;
    border-bottom:1px solid #e5e7eb;
  }
  
  .contact-kicker{
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:#6b7280;
    margin-bottom:12px;
  }
  
  .contact-hero h1{
    font-size:1.8rem;
    font-weight:500;
    color:#111827;
    margin:0 0 14px;
  }
  
  .contact-intro{
    max-width:620px;
    color:#4b5563;
    line-height:1.7;
  }
  
  /* LAYOUT */
  
  .contact-section{
    padding:48px 0;
  }
  
  .contact-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:42px;
    align-items:start;
  }
  
  /* FORM */
  
  .contact-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    padding:28px;
  }
  
  .contact-card h2{
    margin:0 0 18px;
    font-size:1.2rem;
    color:#111827;
  }
  
  .contact-form{
    display:grid;
    gap:16px;
  }
  
  .contact-field label{
    display:block;
    margin-bottom:6px;
    font-size:.9rem;
    font-weight:500;
    color:#374151;
  }
  
  .contact-actions{
    margin-top:12px;
  }
  
  /* INFOS */
  
  .contact-info{
    display:grid;
    gap:18px;
  }
  
  .contact-info-block{
    border:1px solid #e5e7eb;
    padding:22px;
    background:#fafafa;
  }
  
  .contact-info-block h3{
    margin:0 0 10px;
    font-size:1rem;
    color:#111827;
  }
  
  .contact-info-block p{
    margin:0;
    color:#4b5563;
    line-height:1.7;
  }
  
  .contact-info-block ul{
    margin:0;
    padding-left:18px;
    color:#4b5563;
    line-height:1.6;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px){
    .contact-grid{
      grid-template-columns:1fr;
    }
  
    .contact-hero h1{
      font-size:1.5rem;
    }
  }