
    .contact-page{
      --brand:#B06319;
      --text:#1f2937;
      --muted:#6b7280;
      --line:#e5e7eb;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.7;
      background:#fff;
    }
    .contact-wrap{
      max-width: 1040px;
      margin: 0 auto;
      padding: 22px 20px 30px;
    }
    .hero{
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 18px;
    }
    h1{
      margin: 0 0 8px;
      font-size: 34px;
      line-height: 1.2;
      font-weight: 700;
    }
    .lead{
      margin: 0;
      max-width: 820px;
      font-size: 16px;
      color: var(--muted);
    }
    .section{
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }
    .section h2{
      margin: 0 0 12px;
      font-size: 24px;
      line-height: 1.25;
      font-weight: 700;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .h-icon{
      width: 22px;
      height: 22px;
      color: var(--brand);
      flex: 0 0 auto;
    }
    .contact-list{
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .contact-item{
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      display:flex;
      align-items:flex-start;
      gap: 12px;
    }
    .contact-item:last-child{
      border-bottom: 0;
    }
    .item-icon{
      width: 22px;
      height: 22px;
      color: var(--brand);
      flex: 0 0 auto;
      margin-top: 1px;
    }
    .item-body{
      min-width: 0;
    }
    .label{
      display:block;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .value,
    .value a{
      font-size: 18px;
      color: var(--text);
      text-decoration: none;
      word-break: break-word;
    }
    .value a{
      color: var(--brand);
      font-weight: 700;
    }
    .value a:hover{
      text-decoration: underline;
    }
    .address-box{
      padding: 14px 0;
      display:flex;
      align-items:flex-start;
      gap: 12px;
    }
    .address-box .value{
      font-size: 18px;
      line-height: 1.6;
    }
    .map-box{
      margin-top: 6px;
      border: 1px solid var(--line);
      overflow: hidden;
      background:#fff;
    }
    .map-box iframe{
      display:block;
      width: 100%;
      height: 420px;
      border: 0;
    }
    .note{
      margin-top: 10px;
      font-size: 14px;
      color: var(--muted);
    }
    @media (max-width: 900px){
      .contact-wrap{
        padding: 16px 16px 24px;
      }
      h1{
        font-size: 28px;
      }
      .section h2{
        font-size: 22px;
      }
      .value,
      .value a,
      .address-box .value{
        font-size: 16px;
      }
      .map-box iframe{
        height: 320px;
      }
    }
  