
  .ty-contact-page {
    font-family: AstaSans-Medium, Arial, sans-serif;
    color: #111111;
    background: #ffffff;
    padding: 56px 20px 64px;
  }

  .ty-contact-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }

  .ty-contact-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .ty-contact-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-left: 3px solid #1B9CBC;
    background: #f5f8f9;
    color: #111111;
    font-size: 14px;
    line-height: 1.4;
  }

  .ty-contact-title {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    color: #111111;
  }

  .ty-contact-desc {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
  }

  .ty-contact-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .ty-contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 44px;
    padding: 0 24px;
    background: #1B9CBC;
    color: #ffffff !important;
    border: 1px solid #1B9CBC;
    border-radius: 3px;
    font-size: 15px;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(27, 156, 188, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    animation: tyButtonBreath 2.8s ease-in-out infinite;
  }

  .ty-contact-btn:hover {
    background: #1689a6;
    border-color: #1689a6;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 156, 188, 0.32);
  }

  @keyframes tyButtonBreath {
    0% {
      box-shadow: 0 8px 22px rgba(27, 156, 188, 0.18);
    }
    50% {
      box-shadow: 0 10px 30px rgba(27, 156, 188, 0.36);
    }
    100% {
      box-shadow: 0 8px 22px rgba(27, 156, 188, 0.18);
    }
  }

  .ty-contact-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
  }

  .ty-contact-box {
    border: 1px solid #e5e8ea;
    background: #ffffff;
    padding: 32px 34px;
  }

  .ty-contact-box-title {
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e8ea;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    color: #111111;
  }

  .ty-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .ty-contact-list li {
    margin-bottom: 20px;
  }

  .ty-contact-list li:last-child {
    margin-bottom: 0;
  }

  .ty-contact-name {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #777777;
  }

  .ty-contact-value {
    display: block;
    font-size: 17px;
    line-height: 1.65;
    color: #111111;
  }

  .ty-contact-value a {
    color: #111111;
    text-decoration: none;
  }

  .ty-contact-value a:hover {
    color: #1B9CBC;
  }

  .ty-contact-note {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
  }

  .ty-contact-points {
    margin: 0;
    padding-left: 18px;
  }

  .ty-contact-points li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
  }

  .ty-contact-points li::marker {
    color: #1B9CBC;
  }

  @media (max-width: 768px) {
    .ty-contact-page {
      padding: 42px 16px 52px;
    }

    .ty-contact-title {
      font-size: 27px;
    }

    .ty-contact-desc {
      font-size: 16px;
    }

    .ty-contact-actions {
      gap: 12px;
    }

    .ty-contact-btn {
      width: 100%;
      max-width: 280px;
      height: 42px;
      font-size: 15px;
    }

    .ty-contact-panel {
      grid-template-columns: 1fr;
      margin-top: 36px;
    }

    .ty-contact-box {
      padding: 26px 22px;
    }
  }
