        .pricing-section {
            padding: 80px 0;


            .pricing-header {
                text-align: center;
                margin-bottom: 100px;

                h2 {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 32px;
                    line-height: 1.21;
                    color: #333333;
                    margin: 0 auto;


                    @media (max-width: 768px) {
                        font-size: 28px;
                        margin-bottom: 60px;
                    }
                }
            }

            .pricing-grid {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                gap: 18px;
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 20px;
                position: relative;

                @media (max-width: 768px) {
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;
                }
            }

            .pricing-card {
                background-color: #333333;
                border-radius: 10px;
                box-shadow: 6px 8px 4px 0px rgba(0, 0, 0, 0.1);
                position: relative;

                &.basic {
                    width: 373px;
                    height: 460px;
                    margin-top: 46px;

                    @media (max-width: 768px) {
                        width: 100%;
                        max-width: 373px;
                        margin-top: 0;
                    }
                }

                &.premium {
                    width: 374px;
                    height: 532px;
                    margin-top: 0;

                    @media (max-width: 768px) {
                        width: 100%;
                        max-width: 374px;
                    }
                }

                &.advanced {
                    width: 373px;
                    height: 460px;
                    margin-top: 46px;

                    @media (max-width: 768px) {
                        width: 100%;
                        max-width: 373px;
                        margin-top: 0;
                    }
                }

                .card-header {
                    background-color: #EECE18;
                    border-radius: 10px 10px 0 0;
                    height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    h3 {
                        font-family: 'Inter', sans-serif;
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 1.21;
                        color: #333333;
                        margin: 0;
                    }
                }

                .card-content {
                    padding: 52px 30px 56px 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: calc(100% - 76px);

                    .features {
                        text-align: center;
                        margin-bottom: 40px;

                        p {
                            font-family: 'Inter', sans-serif;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 1.21;
                            color: #FFFFFF;
                            margin: 0;
                            white-space: pre-line;
                        }

                        ul {
                            list-style: none;
                            padding: 0;
                            margin: 0 auto;
                            text-align: center;
                            display: inline-block;

                            li {
                                font-family: 'Inter', sans-serif;
                                font-weight: 400;
                                font-size: 14px;
                                line-height: 1.5;
                                color: #FFFFFF;
                                margin-bottom: 12px;
                                position: relative;
                                padding-left: 20px;



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

                    .cta-button-wrapper {
                        text-align: center;
                        margin-top: auto;

                        .btn {

                            padding: 18px 47px;

                            display: inline-block;


                            transition: all 0.3s ease;


                        }
                    }
                }
            }
        }
