
  .x60-contact-section {
    width: 100%;
    background: #f3f4f5;
    padding: 76px 24px;
    box-sizing: border-box;
    border-top: 1px solid #eee;
    scroll-margin-top: 80px;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
  }

  .x60-contact-inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .x60-contact-section h2 {
    margin: 0 0 42px;
    text-align: center;
    font-size: 36px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
  }

  .x60-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .x60-contact-card {
    background: #fff;
    border-radius: 4px;
    padding: 34px 32px;
    min-height: 230px;
    box-sizing: border-box;
  }

  .x60-contact-card h3 {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.25;
    color: #000;
    font-weight: 700;
  }

  .x60-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    margin: 0 0 24px;
    border: 1px solid #111;
    border-radius: 3px;
    background: #050505;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
  }

  .x60-contact-btn:hover {
    background: #222;
  }

  .x60-contact-link {
    display: inline-block;
    margin: 0 0 24px;
    color: #111;
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.5;
  }

  .x60-contact-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
  }

  @media (max-width: 900px) {
    .x60-contact-section {
      padding: 54px 16px;
    }

    .x60-contact-section h2 {
      font-size: 32px;
      margin-bottom: 28px;
    }

    .x60-contact-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .x60-contact-card {
      padding: 28px 24px;
      min-height: auto;
    }
  }
