 /* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .contact-section {
      width: 100%;
    }

    .contact-section__inner {
      max-width: 820px;
      margin: 0 auto;
      padding: 100px 0 70px;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       HEADING
    ─────────────────────────────────────────── */
    .contact-section__heading-wrapper {
      margin-bottom: 70px;
    }

    .contact-section__heading {
      color: #000;
      padding: 0;
      margin: 0;
      font-family: Marcellus;
      font-weight: 400;
      font-size: 40px;
      line-height: 50px;
      letter-spacing: -0.04em;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       COLUMNS ROW
    ─────────────────────────────────────────── */
    .contact-section__columns {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    /* ───────────────────────────────────────────
       COLUMN
    ─────────────────────────────────────────── */
    .contact-section__col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 44px;
    }

    /* Vertical divider between columns */
    .contact-section__col:not(:last-child) {
      border-right: 1px solid rgba(229, 229, 229, 1);
    }

    /* Column label */
    .contact-section__col-label {
      color: #000;
      padding: 0;
      font-family: Marcellus;
      font-weight: 400;
      font-size: 26px;
      line-height: 100%;
      letter-spacing: -0.02em;
      text-align: center;
      margin: 0 0 15px;
    }

    /* Column content */
    .contact-section__col-content p {
      color: rgba(0,0,0,0.8);
      padding: 0;
      margin: 0;
      font-family: Manrope;
      font-weight: 400;
      font-size: 18px;
      line-height: 30px;
      letter-spacing: 0;
      text-align: center;
    }

    a.contact-section__email-link {
      color: rgba(0,0,0,0.8);
      text-decoration: none;
      font-family: Manrope;
      font-weight: 400;
      font-size: 18px;
      line-height: 24px;
      letter-spacing: 0;
      text-align: center;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
    }

    a.contact-section__email-link:hover {
      color: #8f4155;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .contact-section__inner {
        padding: 70px 24px 60px;
      }

      .contact-section__heading {
        font-size: 38px;
        line-height: 48px;
      }
      .contact-section__heading-wrapper {
  margin-bottom: 50px;
}
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
        .contact-section__heading-wrapper {
    margin-bottom:30px;
  }
      .contact-section__inner {
        padding: 40px 15px;
      }

      .contact-section__heading {
        font-size: 28px;
        margin: 0;
        line-height:38px;
        text-align: left;
      }

      .contact-section__columns {
        flex-direction: column;
        gap: 25px 0;
        justify-content: start;
        align-items: start;
      }
      .contact-section__col-label{
        font-size: 22px;
        line-break: 32px;
      }
      .contact-section__col-content p,
      a.contact-section__email-link{
        font-size: 16px;
        line-height: 26px;
        text-align: left;
      }
      .contact-section__col {
        padding: 0;
        width: 100%;
        border: 0;
        justify-content: start;
        align-items: start;
      }
    }
