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

  .rh-b10-box {
    background: #DFECD9;
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
  }

  /* Декор */
  .rh-b10-box::before {
    content: '';
    position: absolute;
    right: 180px; top: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: #BFD8B3;
    opacity: 0.4;
  }

  .rh-b10-box::after {
    content: '';
    position: absolute;
    right: 80px; bottom: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: #99AD8F;
    opacity: 0.15;
  }

  .rh-b10-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  /* Иконка щита */
  .rh-b10-icon {
    width: 52px; height: 52px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rh-b10-text { flex: 1; }

  .rh-b10-pretitle {
    font-family: 'Mont', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #606C59;
    display: block;
    margin: 0 0 6px 0; padding: 0;
  }

  .rh-b10-title {
    font-family: 'Mont', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    color: #262626;
    line-height: 1.3;
    display: block;
    margin: 0; padding: 0;
  }

  .rh-b10-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-family: 'Mont', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #ffffff !important;
    background: #262626 !important;
    padding: 14px 28px !important;
    border-radius: 100px !important;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.2s, transform 0.15s;
  }

  .rh-b10-btn:hover {
    background: #464646 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
  }

  @media (max-width: 1024px) {
    .rh-b10-wrap { padding: 0 60px 40px; }
    .rh-b10-box { padding: 28px 36px; }
  }
  @media (max-width: 768px) {
    .rh-b10-box { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rh-b10-btn { width: 100%; justify-content: center; }
  }
  @media (max-width: 600px) {
    .rh-b10-wrap { padding: 0 24px 36px; }
    .rh-b10-box { padding: 24px 22px; border-radius: 14px; }
  }
