.contact-split-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 24px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  /* NEW CONTAINER TO ALIGN LEFT & RIGHT */
  .contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .contact-left {
    flex: 0 0 360px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .office-card {
    background: #ffffff;
    border-left: 4px solid #6aa8d6;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(106, 168, 214, 0.08);
    max-height: 460px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .office-card h2 {
    color: #224477;
    font-size: 1.4rem;
    margin-bottom: 16px;
    border-bottom: 3px solid #cbe1f2;
    padding-bottom: 8px;
  }
  
  .office-card p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 10px 0;
  }
  
  .office-card a {
    color: #3b7dc4;
    text-decoration: none;
    border-bottom: 1px dashed #6aa8d6;
  }
  
  .office-card a:hover {
    color: #224477;
    border-bottom: 1px solid #224477;
  }
  
  /* RIGHT SIDE */
  .contact-right {
    flex: 1 1 500px;
    position: relative;
    padding-left: 24px;
  }
  
  .person-card {
    position: relative;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px 24px;
    border-left: 4px solid #6aa8d6;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(106, 168, 214, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  
  .person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(106, 168, 214, 0.2);
  }
  
  .person-info {
    flex: 1;
  }
  
  .person-info h3 {
    font-size: 1.2rem;
    color: #224477;
    margin-bottom: 6px;
  }
  
  .person-info .name {
    font-weight: bold;
    color: #336699;
    margin-bottom: 6px;
  }
  
  .person-info p {
    margin: 6px 0;
    color: #2c3e50;
    font-size: 1.1rem;
  }

  .person-info .line {
    margin: 6px 0;
    color: #2c3e50;
    font-size: 0.95rem;
  }
  
  .person-info a {
    color: #3b7dc4;
    text-decoration: none;
    border-bottom: 1px dashed #6aa8d6;
  }
  
  .person-info a:hover {
    color: #224477;
    border-bottom: 1px solid #224477;
  }
  
  .person-photo {
    margin-left: 20px;
    width: 120px;
    height: 160px;
    background: #f0f8ff;
    border: 2px solid #d3e7f4;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ICON */
  .icon {
    margin-right: 8px;
    color: #6aa8d6;
    font-size: 1rem;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-left, .contact-right {
      width: 100%;
      max-width: 100%;
    }
  
    .contact-left {
      order: 1;
      margin-bottom: 32px;
    }
  
    .contact-right {
      order: 2;
    }
  
    .person-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
    }
  
    .person-photo {
      margin-left: 0;
      margin-top: 16px;
      width: 160px;
      height: 200px;
    }
  }
  
  