 /* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .email-platform-section {
      max-width: 1440px;
      margin: 0 auto;
      padding: 150px 30px;
      display: flex !important;
      align-items: center;
      gap: 30px;
    }

    /* ───────────────────────────────────────────
       IMAGE COLUMN
    ─────────────────────────────────────────── */
    .email-platform-section__image-wrapper {
      flex: 0 0 58%;
      max-width: 58%;
    }

    .email-platform-section__image-wrapper img {
      width: 100%;
      height: 400px;
      display: block;
      border-radius: 10px;
      object-fit: cover;
      object-position: center;
    }

    /* ───────────────────────────────────────────
       CONTENT COLUMN
    ─────────────────────────────────────────── */
    .email-platform-section__content {
      flex: 1;
    }

    .email-platform-section__content h2 {
      color: #111111;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
      font-family: Lufga;
      font-weight: 600;
      font-size: 43px;
      line-height: 53px;
      letter-spacing: 0;
      margin: 0 0 20px;
    }

    .email-platform-section__description {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 15px;
      line-height: 1.65;
      color: #444444;
    }

    .email-platform-section__description p {
      font-family: Lufga;
      font-weight: 400;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 0.01em;
      padding: 0;
      margin: 0 0 15px;
      color: #000;
    }

    .email-platform-section__description p:last-child {
      margin-bottom: 0;
    }

    .email-platform-section__description strong {
      font-weight: 500;
      font-size: 18px;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
      .email-platform-section {
  padding: 120px 30px;
      }

    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .email-platform-section {
        padding: 80px 20px 90px;
        gap: 50px;
      }

      .email-platform-section__image-wrapper {
        flex: 0 0 46%;
        max-width: 46%;
      }

      .email-platform-section__image-wrapper img {
        height: 360px;
      }

    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .email-platform-section {
  flex-direction: column-reverse;
  gap: 30px 0;
        padding: 80px 20px 40px;
      }

      .email-platform-section__image-wrapper {
        flex: unset;
        max-width: 100%;
        width: 100%;
      }

      .email-platform-section__image-wrapper img {
        height: auto;
      }

      .email-platform-section__content h2 {
        font-size: 28px;
        margin-bottom: 18px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px (stack vertically)
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .email-platform-section {
  padding: 55px 15px 60px;
  gap: 25px 0;
      }

      .email-platform-section__image-wrapper {
        flex: none;
        max-width: 100%;
        width: 100%;
      }

    }