       /* Container for the tabs */
        .tabs-container {
            margin: 0 auto;
            display: flex;
            flex-wrap: nowrap;
            background: #ffffff;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
            margin-bottom: 100px;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }

        /* Tab buttons wrapper */
        .tab-buttons {
            flex: 0 0 35%;
            max-width: 350px;
            display: flex;
            flex-direction: column;
        }

        /* Individual tab button */
        .tab-button {
            background: #f8f9fa;
            color: #333333;
            padding: 18px 20px;
            margin-bottom: 5px;
            cursor: pointer;
            border: 0px solid #dee2e6;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .tab-button:last-child {
            margin-bottom: 0px !important;
        }

        .tab-button:hover {
            background: #5e5e5e;
            color: #fff;
        }

        .tab-button.active {
            background: #87b330;
            color: #fff;
            font-weight: 600;
        }

        /* Tab content wrapper */
        .tab-content-wrapper {
            flex: 0 0 70%;
            max-width: calc(100% - 350px);
        }

        .tab-content {
            display: none;
            padding: 25px;
            background: #ffffff;
            border: 0px solid #dee2e6;
            border-radius: 4px;
            line-height: 1.6;
        }

        .tab-content.active {
            display: block;
        }

        /* Content styling */
        .tab-content h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333333;
        }

        .tab-title {
            margin-bottom: 30px;
        }

        .tab-inner--title {
            background-color: #87b330;
            font-size: 16px;
            padding: 5px 10px; 
            color: #fff;
            margin-top: 30px;
        }

        .tab-btn {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            column-gap: 20px;
            row-gap: 10px;
        }
        
        .tab-btn .style2 {
            background-color: #aab8c3;
            border-radius: 30px;
            color: #fff;
            padding: calc(.667em + 2px) calc(1.333em + 2px);
            font-size: 1.125em;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .tab-buttons {
                flex: 0 0 40%;
                max-width: 300px;
            }

            .tab-content-wrapper {
                flex: 0 0 60%;
                max-width: calc(100% - 320px);
            }

            .tab-button {
                font-size: 15px;
                padding: 10px 16px;
            }

            .tab-content {
                padding: 20px;
            }

            .tab-content h2 {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .tabs-container {
                flex-direction: column;
                flex-wrap: wrap;
                gap: 10px;
            }

            .tab-buttons {
                flex: 0 0 100%;
                max-width: 100%;
                flex-direction: column; /* Stack buttons vertically */
                margin-bottom: 15px;
            }

            .tab-button {
                margin-right: 0;
                margin-bottom: 5px; /* Restore vertical spacing */
                font-size: 14px;
                padding: 8px 14px;
            }

            .tab-button:last-child {
                margin-bottom: 0 !important;
            }

            .tab-content-wrapper {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .tab-content {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .tab-button {
                font-size: 13px;
                padding: 6px 12px;
            }

            .tab-content h2 {
                font-size: 18px;
            }

            .tab-content {
                padding: 12px;
            }

        }