.how-rlt-could-help_section {
    & .section_inner {
        display: flex;
        align-items: center;
        justify-content: center;

        & .how-rlt-could-help-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            & h2 {
                font-family: "Aboreto", arial, sans-serif;
                text-transform: uppercase;
                font-weight: 400;
                font-size: 5rem;
                margin: 0;
                line-height: 1;
                color: var(--primary);
                margin: 0 0 3rem;
                text-align: center;

                @media (max-width: 991px) {
                    font-size: 3rem;
                }
            }

            & .how-rlt-could-help-subtitle {
                font-family: "DM Sans", arial, sans-serif;
                font-size: 2rem;
                margin: 0 0 4rem;
                text-align: center;
                color: #44251B;

                @media (max-width: 991px) {
                    font-size: 1.6rem;
                    margin: 0 0 3rem;
                }
            }

            & .benefit-cards {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
                width: 100%;

                @media (max-width: 1200px) {
                    grid-template-columns: repeat(2, 1fr);
                }

                @media (max-width: 767px) {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                & .benefit-card {
                    background: #fff1e8;
                    border-radius: 2rem;
                    padding: 2.5rem;
                    display: flex;
                    flex-direction: column;
                    border: 2px solid #44251B;

                    & .benefit-card-header {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 1.5rem;
                        margin-bottom: 2rem;

                        & .benefit-icon {
                            width: 5rem;
                            height: 5rem;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }

                        & .benefit-category {
                            font-size: 1.8rem;
                            font-family: "DM Sans", arial, sans-serif;
                            font-weight: 700;
                            color: #44251B;
                            margin: 0;
                            line-height: 1.2;

                            @media (max-width: 991px) {
                                font-size: 1.6rem;
                            }
                        }
                    }

                    & .benefits-list {
                        font-size: 1.5rem;
                        color: #44251B;
                        line-height: 1.6;

                        @media (max-width: 991px) {
                            font-size: 1.4rem;
                        }

                        & ul {
                            list-style: none;
                            padding: 0;
                            margin: 0;

                            & li {
                                list-style: none;
                                margin-bottom: 1rem;
                                padding-left: 2.5rem;
                                position: relative;

                                &:last-child {
                                    margin-bottom: 0;
                                }

                                &::before {
                                    content: "✓";
                                    position: absolute;
                                    left: 0;
                                    color: #EDAB72;
                                    font-weight: 700;
                                    font-size: 1.6rem;
                                    line-height: 1.2;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
