
  .ynf-contact-info-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 62px 24px 70px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
  }

  .ynf-contact-info-section * {
    box-sizing: border-box;
  }

  .ynf-contact-info-container {
    max-width: 1500px;
    margin: 0 auto;
  }

  .ynf-contact-section-heading {
    margin: 0 0 28px;
  }

  .ynf-contact-section-heading h2 {
    margin: 0;
    color: #111111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .ynf-contact-section-heading span {
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 12px;
    background: #e60012;
    border-radius: 2px;
  }

  .ynf-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .ynf-contact-info-card {
    min-height: 220px;
    padding: 34px 26px 30px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
    transition: all .22s ease;
  }

  .ynf-contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 18, .22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .075);
  }

  .ynf-contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60012;
    background: #f4f4f4;
    border-radius: 50%;
  }

  .ynf-contact-info-icon svg {
    display: block;
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ynf-contact-info-card h3 {
    margin: 0 0 16px;
    color: #111111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ynf-contact-info-card p {
    margin: 0 0 8px;
    color: #222222;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
  }

  .ynf-contact-info-card em {
    display: block;
    color: #444444;
    font-size: 14px;
    line-height: 1.45;
    font-style: normal;
    font-weight: 500;
  }

  .ynf-contact-info-card a {
    color: #222222 !important;
    text-decoration: none;
  }

  .ynf-contact-info-card a:hover {
    color: #e60012 !important;
  }

  @media (max-width: 1100px) {
    .ynf-contact-info-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .ynf-contact-info-section {
      padding: 46px 16px 56px;
    }

    .ynf-contact-section-heading h2 {
      font-size: 23px;
    }

    .ynf-contact-info-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .ynf-contact-info-card {
      min-height: auto;
      padding: 30px 20px 28px;
    }

    .ynf-contact-info-card p {
      font-size: 15px;
    }
  }
