/* Palestinian Sales Description — front-end rendering of the structured copy.
   Mirrors the layout: stacked boxed sections + a dark call-to-action box. */

.wpsd-desc {
    direction: rtl;
    text-align: right;
    font-size: 16px;
    line-height: 1.9;
    color: #2b2b2b;
}

.wpsd-desc .wpsd-sec {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 14px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.wpsd-desc .wpsd-h {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* small accent dot before each heading, like the reference layout */
.wpsd-desc .wpsd-h::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f0a000;
    flex: 0 0 auto;
}

.wpsd-desc p {
    margin: 0;
}

.wpsd-desc .wpsd-benefits ul {
    margin: 6px 0 0 0;
    padding: 0;
    list-style: none;
}

.wpsd-desc .wpsd-benefits li {
    position: relative;
    padding-right: 26px;
    margin: 6px 0;
}

.wpsd-desc .wpsd-benefits li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: #1aa179;
    font-weight: 700;
}

/* color-code the stages subtly */
.wpsd-desc .wpsd-problem  { border-right: 4px solid #e06666; }
.wpsd-desc .wpsd-solution { border-right: 4px solid #3d85c6; }
.wpsd-desc .wpsd-benefits { border-right: 4px solid #1aa179; }
.wpsd-desc .wpsd-guarantee{ border-right: 4px solid #f0a000; }

.wpsd-desc .wpsd-cta {
    background: #14142b;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 4px;
}
