
  html,
  body {
    overflow-x: hidden;
  }

  .ynf-red-cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ynf-red-cta-inner {
    position: relative;
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 560px;
    align-items: center;
    background: #d71920;
    box-sizing: border-box;
  }

  .ynf-red-cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(185, 0, 0, 0.96) 0%,
        rgba(215, 25, 32, 0.94) 42%,
        rgba(160, 0, 0, 0.88) 100%
      );
    z-index: 0;
  }

  .ynf-red-cta-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 50%, rgba(255,255,255,0.12), transparent 32%),
      linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.16));
    z-index: 1;
    pointer-events: none;
  }

  .ynf-red-cta-bg-shape {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.22;
    background:
      linear-gradient(120deg, transparent 0%, transparent 48%, rgba(80,0,0,0.75) 48%, rgba(80,0,0,0.75) 100%);
  }

  .ynf-red-cta-content {
    position: relative;
    z-index: 3;
    padding: 52px 90px;
    box-sizing: border-box;
  }

  .ynf-red-cta-content h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
  }

  .ynf-red-cta-content p {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
  }

  .ynf-red-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .ynf-red-cta-btn {
    min-width: 185px;
    height: 54px;
    padding: 0 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.25s ease;
  }

  .ynf-red-cta-btn-white {
    background: #ffffff;
    color: #d71920;
    border: 2px solid #ffffff;
  }

  .ynf-red-cta-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.85);
  }

  .ynf-red-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  }

  .ynf-red-cta-btn-white:hover {
    background: #f3f4f6;
    color: #b91c1c;
  }

  .ynf-red-cta-btn-outline:hover {
    background: #ffffff;
    color: #d71920;
  }

  .ynf-red-cta-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ynf-red-cta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ynf-red-cta-image {
    position: relative;
    z-index: 3;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 70px 14px 10px;
    box-sizing: border-box;
  }

  .ynf-red-cta-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,0.28));
  }

  @media (max-width: 991px) {
    .ynf-red-cta-inner {
      grid-template-columns: 1fr;
    }

    .ynf-red-cta-content {
      padding: 48px 28px 20px;
    }

    .ynf-red-cta-content h2 {
      font-size: 32px;
    }

    .ynf-red-cta-image {
      min-height: auto;
      justify-content: flex-start;
      padding: 0 28px 42px;
    }

    .ynf-red-cta-image img {
      max-width: 480px;
    }
  }

  @media (max-width: 575px) {
    .ynf-red-cta-content {
      padding: 42px 15px 20px;
    }

    .ynf-red-cta-content h2 {
      font-size: 27px;
    }

    .ynf-red-cta-content p {
      font-size: 15px;
      line-height: 1.6;
    }

    .ynf-red-cta-buttons {
      gap: 12px;
    }

    .ynf-red-cta-btn {
      width: 100%;
      min-width: 100%;
      height: 50px;
      font-size: 15px;
    }

    .ynf-red-cta-image {
      padding: 0 15px 36px;
    }

    .ynf-red-cta-image img {
      max-width: 100%;
    }
  }
