        .sec-title_two-heading {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .sec-title_two-heading span {
            color: #2A73FF;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        }

        .sec-title_two-title {
            font-size: 0.9rem;
            letter-spacing: 2px;
            color: #999;
        }

        .cta-small-text {
            font-style: italic;
            font-size: 0.8rem;
            color: #6c757d;
            line-height: 1.2;
        }

        /* Таб бутони */
        .tab-buttons .tab-btn {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            border: 2px solid gray;
            transition: all 0.3s ease;
            margin-bottom: 50px !important;
            background-color: white;
        }


        .tab-buttons .tab-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        /* Активен таб */
        .tab-buttons .active-btn {
            border-color: #2A73FF;
            background-color: #E8F0FF;
            color: #2A73FF;
        }

        /* Кръгче в началото */
        .tab-buttons .circle {
            width: 10px;
            height: 10px;
            background-color: #2A73FF;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            transition: background-color 0.3s ease;
            margin-bottom: 5px;
        }

        @media (max-width: 768px) {
            .tab-buttons .tab-btn {
                margin-bottom: 0px !important;
                font-size: 12px !important;
                padding-top: 5px;
                padding-bottom: 5px;
                padding-left: 10px !important;
                padding-right: 10px !important;
            }

            .tab-buttons .circle {
                width: 10px;
                height: 10px;
                background-color: #2A73FF;
                border-radius: 50%;
                display: inline-block;
                margin-right: 8px;
                transition: background-color 0.3s ease;
            }
        }

        /* Когато таб не е активен – circle е сива */
        .tab-buttons .tab-btn:not(.active-btn) .circle {
            background-color: #ccc;
        }

        /* Малко текстче за подканване */
        .tab-buttons .save {
            font-size: 0.8rem;
            background-color: #CDE4FF;
            border-radius: 12px;
            padding: 2px 10px;
            margin-left: 6px;
            transition: background-color 0.3s ease;
        }

        .tab-buttons .tab-btn:hover .save {
            background-color: #b3d7ff;
        }

        .cta-small-text {
            font-style: italic;
            font-size: 0.8rem;
            color: #6c757d;
            line-height: 1.2;
        }

        .tab-wrapper {
            display: flex;
            flex-direction: column;
        }

    


        .cta-popout {
                margin-left: 100px;
            position: absolute;
            bottom: 130%;
            /* над бутона */
            left: 20px;
            /* вместо 50% */
            transform: translateY(10px);
            /* няма translateX */
            background-color: #2A73FF;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 800;
            font-style: italic;
            padding: 6px 12px;
            border-radius: 8px;
            white-space: nowrap;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transition: all 0.6s ease;
            z-index: 2;
        }
        /* Вижда се при скрол */
        .cta-popout.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Стрелка сочеща надолу към бутона */
        .cta-popout::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #2A73FF;
        }





        .sec-title_two p {
            margin-bottom: 50px;
        }

        @media (max-width: 1076px) {
            .cta-popout {
                transform: translateX(-50%) translateY(10px);
                text-align: center;
                font-size: 10px;
            }

            .cta-popout.visible {
                transform: translateX(-65%) translateY(0);
            }

            .cta-popout::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }