.contact-page {
    position: relative;
    flex: 1 1 auto;
    background: #ffffff;
  }
  
  .contact-root {
    width: 100%;
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  .contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #f3f4f6;
    background: #fbfdfc;
    padding: 5rem 1rem 3rem;
  }
  
  .contact-hero-arc {
    position: absolute;
    bottom: 0;
    left: -70px;
    z-index: 0;
    display: block;
    opacity: 0.7;
    pointer-events: none;
    transform: scale(0.8);
    transform-origin: bottom left;
  }

  .contact-hero-dot {
    position: absolute;
    top: 2rem;
    right: 12%;
    z-index: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: #e3eff6;
    opacity: 0.8;
  }
  
  .contact-hero-inner {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    text-align: center;
  }
  
  .contact-hero-title {
    margin: 0;
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .contact-content {
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  .contact-intro {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .contact-title {
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .contact-description {
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-section-title {
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-item--spaced {
    margin-bottom: 1.5rem;
  }
  
  .contact-item-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #3A66B7;
  }
  
  .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .contact-item-label {
    display: block;
    margin-bottom: 0.25rem;
    color: #3A66B7;
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .contact-item-text {
    margin: 0;
    color: #555555;
    font-size: 0.8125rem;
  }
  
  .contact-item-text--break {
    word-break: break-all;
  }
  
  .contact-map {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  }
  
  .contact-map iframe {
    display: block;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-field--labeled {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-label {
    color: #555555;
    font-size: 0.75rem;
  }
  
  .contact-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background: #fafafa;
    padding: 0.75rem 1rem;
    color: #1f2937;
    font-size: 0.8125rem;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
  }
  
  .contact-input:focus {
    outline: none;
    border-color: #3A66B7;
    box-shadow: 0 0 0 1px #3A66B7;
  }
  
  .contact-textarea {
    resize: vertical;
    min-height: 7.5rem;
  }
  
  .contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    border-radius: 0.375rem;
    background: #3A66B7;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms ease;
  }
  
  .contact-submit:hover {
    background: #2F5599;
  }
  
  @media (min-width: 640px) {
    .contact-hero {
      padding-top: 6rem;
      padding-bottom: 4rem;
    }
  
    .contact-hero-arc {
      left: -50px;
      transform: none;
    }
  
    .contact-hero-dot {
      width: 2rem;
      height: 2rem;
      top: 3rem;
      right: 15%;
    }
  
    .contact-hero-title {
      font-size: 2.25rem;
    }
  
    .contact-content {
      padding: 4rem 1.5rem;
    }
  
    .contact-intro {
      margin-bottom: 4rem;
    }
  
    .contact-title {
      margin-bottom: 1rem;
      font-size: 1.875rem;
    }
  
    .contact-description {
      font-size: 1.125rem;
    }
  
    .contact-grid {
      gap: 3rem;
    }
  
    .contact-section-title {
      margin-bottom: 2rem;
      font-size: 1.5rem;
    }
  
    .contact-item {
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
  
    .contact-item--spaced {
      margin-bottom: 2rem;
    }
  
    .contact-item-label {
      font-size: 0.9375rem;
    }
  
    .contact-item-text {
      font-size: 0.875rem;
    }
  
    .contact-map {
      height: 300px;
    }
  
    .contact-form {
      gap: 1.25rem;
    }
  
    .contact-label {
      font-size: 0.8125rem;
    }
  
    .contact-input {
      padding-top: 0.875rem;
      padding-bottom: 0.875rem;
      font-size: 0.875rem;
    }
  
    .contact-submit {
      padding-top: 1rem;
      padding-bottom: 1rem;
      font-size: 1rem;
    }
  }
  
  @media (min-width: 1024px) {
    .contact-content {
      padding-top: 7rem;
      padding-bottom: 7rem;
    }
  
    .contact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 5rem;
    }
  
    .contact-map {
      height: 350px;
    }
  }
  
  @media (min-width: 1280px) {
    .contact-hero-title {
      font-size: 3rem;
    }
  }