.company-table{
    width:100%;
    border-collapse:collapse;
}

.company-table th,
.company-table td{
    border:1px solid #ddd;
    padding:18px;
}

.timeline{
    border-left:4px solid #7b1117;
    padding-left:28px;
}

.timeline-item{
    margin-bottom:24px;
}

.partner-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}




    html{
      scroll-behavior:smooth;
    }

    img{
      max-width:100%;
      height:auto;
      display:block;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    .container{
      width:100%;
      max-width:1200px;
      margin:0 auto;
      padding:0 24px;
    }

    .logo{
      display:flex;
      align-items:center;
    }

    .global-nav a{
      font-size:14px;
      font-weight:700;
      color:#201717;
      transition:.2s;
    }

    .global-nav a:hover,
    .global-nav a[aria-current="page"]{
      color:#7b1117;
    }

    .page-label{
      display:block;
      margin-bottom:16px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.25em;
      opacity:.82;
    }

    .page-hero h1{
      font-size:56px;
      line-height:1.2;
      margin-bottom:18px;
      font-weight:700;
    }

    .page-hero p{
      max-width:680px;
      font-size:18px;
      opacity:.92;
    }

    .section{
      padding:82px 0;
    }

    .bg-white{
      background:#fff;
    }

    .section-title{
      margin-bottom:32px;
      font-size:34px;
      line-height:1.35;
      color:#7b1117;
    }

    .lead{
      font-size:18px;
      font-weight:700;
      line-height:2;
    }

    .text-block p + p{
      margin-top:18px;
    }

    .message-box{
      background:#fff;
      border-radius:16px;
      padding:40px;
      box-shadow:0 10px 30px rgba(60,30,30,.08);
    }

    .philosophy{
      display:grid;
      grid-template-columns:0.8fr 1.2fr;
      gap:40px;
      align-items:center;
    }

    .philosophy-copy{
      color:#7b1117;
      font-size:34px;
      font-weight:700;
      line-height:1.45;
    }

    .company-table{
      width:100%;
      border-collapse:collapse;
      background:#fff;
      box-shadow:0 10px 30px rgba(60,30,30,.06);
    }

    .company-table th,
    .company-table td{
      border:1px solid #e4d9d6;
      padding:18px 20px;
      vertical-align:top;
    }

    .company-table th{
      width:230px;
      background:#f4efed;
      color:#7b1117;
      text-align:left;
      font-weight:700;
    }

    .business-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:24px;
    }

    .card{
      background:#fff;
      border-radius:16px;
      padding:32px;
      box-shadow:0 10px 30px rgba(60,30,30,.08);
      border:1px solid #eee4e0;
    }

    .card h3{
      margin-bottom:12px;
      color:#7b1117;
      font-size:22px;
    }

    .partner-box{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:48px;
      align-items:center;
      background:#fff;
      border-radius:18px;
      padding:44px;
      box-shadow:0 10px 30px rgba(60,30,30,.08);
    }

    .partner-logo{
      color:#707070;
      font-size:42px;
      font-weight:700;
      line-height:1.25;
    }

    .cert-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px 28px;
      list-style:none;
    }

    .cert-list li{
      position:relative;
      padding-left:20px;
    }

    .cert-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.75em;
      width:8px;
      height:8px;
      border-radius:50%;
      background:#7b1117;
    }

    .timeline{
      border-left:4px solid #7b1117;
      padding-left:28px;
    }

    .timeline-item{
      margin-bottom:26px;
    }

    .timeline-year{
      color:#7b1117;
      font-weight:700;
      margin-bottom:4px;
    }

    .access-box{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:32px;
      align-items:stretch;
    }

    .map-placeholder{
      min-height:280px;
      background:linear-gradient(135deg,#fff4ef,#eddcff,#dff6ff);
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#7b1117;
      font-weight:700;
    }

    .footer{
      background:#741116;
      color:#fff;
      margin-top:80px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr;
      gap:40px;
      padding:60px 0;
    }

    .footer-logo{
      height:72px;
      width:auto;
      margin-bottom:20px;
    }

    .footer h4{
      margin-bottom:16px;
      font-size:18px;
    }

    .footer ul{
      list-style:none;
    }

    .footer li{
      margin-bottom:10px;
    }

    .footer a:hover{
      opacity:.8;
    }

    .copyright{
      border-top:1px solid rgba(255,255,255,.25);
      padding:20px;
      text-align:center;
      font-size:12px;
      color:rgba(255,255,255,.78);
    }

    @media screen and (max-width:1024px){
      .page-hero h1{
        font-size:44px;
      }

      .philosophy,
      .partner-box,
      .access-box{
        grid-template-columns:1fr;
      }

      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
    }

    @media screen and (max-width:768px){
      .container{
        padding:0 16px;
      }

      .header-inner{
        height:68px;
      }

      .logo img{
        height:42px;
      }

      .global-nav{
        display:none;
      }

      .page-hero{
        padding:56px 0;
      }

      .page-hero h1{
        font-size:34px;
      }

      .page-hero p{
        font-size:15px;
      }

      .section{
        padding:60px 0;
      }

      .section-title{
        font-size:26px;
      }

      .lead{
        font-size:16px;
      }

      .message-box,
      .partner-box,
      .card{
        padding:24px;
      }

      .philosophy-copy{
        font-size:26px;
      }

      .business-grid,
      .cert-list,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .company-table,
      .company-table tbody,
      .company-table tr,
      .company-table th,
      .company-table td{
        display:block;
        width:100%;
      }

      .company-table th{
        border-bottom:none;
      }

      .partner-logo{
        font-size:30px;
      }

      .footer-logo{
        height:56px;
      }
    }

    @media screen and (max-width:480px){
      .page-hero h1{
        font-size:30px;
      }

      .section-title{
        font-size:23px;
      }

      .timeline{
        padding-left:18px;
      }
    }