
/* How We Can Help */
.how-we-can-help {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    background-color: #181716;
    border-radius: 8px;
}

.how-we-can-help-left {
    box-sizing: border-box;
    flex: 1 1 33%;
    padding: 60px 0;
}

.how-we-can-help-right {
    box-sizing: border-box;
    flex: 1 1 67%;
    padding: 60px 0;
}

.how-we-can-help-eyebrow {
    display: block;
    color: #e48dad !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.how-we-can-help-heading {
    color: #fff !important;
    font-size: 2rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.how-we-can-help-intro,
.how-we-can-help-subheading,
.how-we-can-help-closing {
    color: #e5e5e5 !important;
    font-size: 1.125rem !important;
    line-height: 1.6;
    margin: 0 0 24px;
}

.how-we-can-help-closing {
    margin-bottom: 0;
}

.how-we-can-help-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    font-size:1.125rem!important;
}

.how-we-can-help-list li {
    position: relative;
    color: #e5e5e5 !important;
    font-size: 1.125rem !important;
    line-height: 1.6;
    padding-left: 20px;
    margin-bottom: 8px;
}

.how-we-can-help-list li::before {
    content: "\00b7";
    position: absolute;
    left: 4px;
    top: 0;
    color: #e5e5e5;
    font-size: 1.4rem;
    line-height: 1.2;
}

/* Responsive - stack to a single column on mobile */
@media (max-width: 768px) {
    .how-we-can-help {
        flex-direction: column;
        align-items: stretch;
    }
    .how-we-can-help-left {
        padding: 40px 0 0;
    }
    .how-we-can-help-right {
        padding: 24px 0 40px;
    }
}
