    :root{
      --orange: #c54a2a;
      --text: #2d2d2d;
      --muted: #6b6b6b;
      --link: #506a93;
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
      background:#fff;
    }

    .contact-section{
      max-width: 1200px;
      margin: 0 auto;
      /* padding: 70px 30px; */
      padding: 40px 30px 30px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 50px;
      align-items: center;
    }

    .contact-image{
      width: 100%;
      display:flex;
      justify-content:flex-start;
    }

    .contact-image img{
      width: 100%;
      max-width: 620px;
      height: auto;
      display:block;
    }

    .contact-kicker{
      color: var(--orange);
      font-size: 16px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .contact-title{
      font-size: 54px;
      line-height: 1.05;
      margin: 0 0 28px 0;
      font-weight: 700;
    }

    .contact-items{
      display:flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 26px;
    }

    .contact-item{
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 18px;
      color: var(--muted);
    }

    .contact-item a{
      color: var(--link);
      text-decoration: underline;
      flex-wrap: nowrap;
    }

    .icon{
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      color: #23406a;
    }

    .cta-btn{
      display:inline-block;
      background: var(--orange);
      color:#fff;
      text-decoration:none;
      padding: 14px 22px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      width: fit-content;
      box-shadow: 0 2px 0 rgba(0,0,0,0.08);
    }

    .cta-btn:hover{ filter: brightness(0.97); }

    /* Responsive */
    @media (max-width: 980px){
      .contact-section{
        grid-template-columns: 1fr;
        padding: 50px 20px;
      }
      .contact-title{ font-size: 40px; }
      .contact-image{ justify-content:center; }
      .contact-image img{ max-width: 520px; }
    }