.seo-descriptions {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0px 50px;
    overflow: hidden;
    

    .full {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 80px 0px;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;

        >.top {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 40px;

            >.left {
                display: flex;
                flex-direction: column;
                gap: 24px;
                flex: 1;

                >.main {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    >h2.heading {
                        color: var(--Colour-Text, #1D1921);
                        font-family: Poppins;
                        font-size: 48px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 120%;
                    }

                    >.body {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 300;
                        line-height: 150%;
                        /* 24px */
                    }
                }

                >.sub {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    >h3.heading {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 32px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 100%;
                        /* 32px */
                    }

                    >.body {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 300;
                        line-height: 150%;
                        /* 24px */
                    }
                }
            }

            >.right {
                display: flex;
                flex-direction: column;
                gap: 24px;
                flex: 1;

                >.headings {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    >h3.heading {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 32px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 100%;
                        /* 32px */
                    }

                    >.sub-heading {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 300;
                        line-height: 150%;
                        /* 24px */

                    }
                }

                >.bullets {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    >.bullet {
                        display: flex;
                        flex-direction: row;
                        gap: 8px;

                        >.icon {
                            display: flex;
                            align-items: center;
                            padding: 2px;

                            svg {
                                max-width: 25px;
                            }
                        }

                        >.body {
                            color: var(--Colour-Text, #1D1921);
                            /* Body-Text */
                            font-family: "Lexend Deca";
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 300;
                            line-height: 150%;
                            /* 24px */

                            span {
                                color: var(--Colour-Primary, #453784);
                            }
                        }
                    }


                }
            }
        }

        >.bottom {
            display: flex;
            flex-direction: column;
            gap: 24px;

            >.top {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;

                >.heading {
                    color: var(--Colour-Text, #1D1921);
                    font-family: Poppins;
                    font-size: 32px;
                    font-weight: 600;
                    line-height: 120%;
                }

                >.arrows {
                    display: flex;
                    flex-direction: row;
                    gap: 12px;

                    .swiper-button-prev,
                    .swiper-button-next {
                        position: static;
                        width: 44px;
                        height: 44px;
                        border-radius: 50%;
                        background-color: var(--Colour-Primary, #453784);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        cursor: pointer;
                        margin: 0;
                        flex-shrink: 0;

                        &::after {
                            display: none;
                        }
                    }
                }
            }

            >.bottom {
                .swiper {
                    overflow: visible;
                }

                .swiper-slide {
                    height: auto;
                    max-width: 270px;
                }

                .card {
                    background: #fff;
                    border-radius: 12px;
                    padding: 24px;
                    display: flex;
                    flex-direction: column;
                    gap: 40px;
                    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
                    height: 100%;
                    box-sizing: border-box;
                    transition: background 0.2s, color 0.2s;

                    >.icon {
                        width: 32px;
                        height: 32px;
                    }

                    >.body {
                        color: var(--Colour-Text, #1D1921);
                        font-family: "Lexend Deca";
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 140%;
                    }
                }

                .swiper-slide:nth-child(even) .card {
                    background: var(--Colour-Primary, #453784);

                    >.body {
                        color: #fff;
                    }

                    >.icon svg {
                        filter: brightness(0) invert(1);
                    }
                }
            }
        }
    }


}


@media (max-width: 1024px) {
    .seo-descriptions {
        padding: 0 40px;
        .full {
            padding: 40px 0;
            .top {
                flex-direction: column;
            }

            h2.heading {
                font-size: 32px !important;
            }

            h3.heading {
                font-size: 24px !important;
            }
        }
    }
}


@media (max-width: 767px) {
    .seo-descriptions {
        padding: 0 20px;

        .arrows {
            display: none !important;
        }
    }
}