
  .rh-roi * { box-sizing: border-box; font-family: 'Mont', sans-serif; }
  .rh-roi { box-sizing: border-box !important; width: 100%; background: #ffffff; }
  .rh-roi-wrap { width: 100%; max-width: 1600px; margin: 0 auto; padding: 48px 80px; }

  .rh-roi-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #ECECEC;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .rh-roi-col--text {
    flex: 1 1 65%;
    padding: 40px 44px;
    text-align: left;
  }

  .rh-roi-col--visual {
    flex: 0 0 280px;
    background-color: #1F1F1F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
  }

  .rh-roi-img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .rh-roi-img img {
    width: 100%;
    display: block;
  }

  .rh-roi-visual-label {
    color: #ffffff;
    font-size: 15px; font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    opacity: 0.85;
  }

  .rh-roi-badge {
    display: inline-block;
    background-color: #F1F5EC;
    color: #7C9667;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin: 0 0 20px 0;
  }

  .rh-roi-title {
    color: #1A1A1A;
    font-size: 27px; font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px 0;
  }

  .rh-roi-text {
    color: #5C5C5C;
    font-size: 15px; font-weight: 600;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
  }

  .rh-roi-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #A8C19A;
    color: #1A1A1A !important;
    text-decoration: none !important;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 11px 18px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
  }

  .rh-roi-cta:hover {
    background-color: #97B086;
    transform: translateY(-1px);
  }

  .rh-roi-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .rh-roi-cta:hover .rh-roi-arrow {
    transform: translateX(4px);
  }

  @media (max-width: 1280px) { .rh-roi-wrap { padding: 40px 60px; } }

  @media (max-width: 900px) {
    .rh-roi-card { flex-direction: column; border-radius: 16px; }
    .rh-roi-col--text { padding: 32px 28px; order: 1; }
    .rh-roi-col--visual { flex: none; flex-direction: row; padding: 20px 24px; order: 0; }
    .rh-roi-img { max-width: 80px; }
    .rh-roi-visual-label { text-align: left; font-size: 13px; }
    .rh-roi-title { font-size: 24px; }
  }

  @media (max-width: 600px) {
    .rh-roi-wrap { padding: 32px 20px; }
    .rh-roi-col--text { padding: 28px 20px; }
  }
