/* Services Section Styling */
        .services-why-choose .content-container {
            transition: all 0.3s ease;
        }

        /* Services Section Styling */
        .services-why-choose .content-container {
            transition: all 0.3s ease;
        }

        /* Services Section Heading Centering */
        .services-why-choose .section-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-why-choose .section-heading h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .services-why-choose .section-heading p {
            font-size: 1.1rem;
            color: #495057;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Services Horizontal Tabs Styling */
        .services-nav-tabs-vertical {
            gap: 10px;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center !important;
            width: 100%;
        }

        .services-nav-tabs-vertical .nav-item {
            border-bottom: 1px solid #0a1a56;
            border-radius: 8px;
        }

        .services-nav-tabs-vertical .nav-link {
            border-radius: 8px;
            color: #495057 !important;
            padding: 1rem 1.5rem !important;
            text-align: center;
            min-width: 140px;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .services-nav-tabs-vertical .nav-link:hover,
        .services-nav-tabs-vertical .nav-link.active {
            background-color: #0a1a56 !important;
            color: #ffffff !important;
        }

        .services-nav-tabs-vertical .nav-link span {
            display: block;
        }

        /* Services content styling */
        .services-why-choose .tab-content {
            padding-left: 0;
        }

        /* Services content centering */
        .services-vertical-tabs-content .tab-pane .row {
            align-items: center;
            justify-content: center;
        }

        .services-vertical-tabs-content .text-center.text-lg-start {
            text-align: center;
        }

        .services-vertical-tabs-content img {
            margin: 0 auto;
            display: block;
        }

        /* Services accordion styling */
        .services-why-choose .accordion-item {
            color: #212529;
            background-color: #ffffff;
            border-color: #dee2e6;
        }

        .services-why-choose .accordion-button {
            font-size: 1rem;
            font-weight: 500;
        }

        .services-why-choose .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>");
        }

        .services-why-choose .accordion-button:not(.collapsed) {
            color: #ffffff;
            background-color: #0a1a56;
            box-shadow: unset;
        }

        .services-why-choose .accordion-button:focus {
            border-color: unset;
            box-shadow: unset;
        }

        /* Services desktop layout adjustments */
        @media (min-width: 992px) {
            .services-desktop-tabs-container {
                display: block;
            }

            .services-vertical-tabs-nav {
                margin-bottom: 2rem !important;
            }

            .services-nav-tabs-vertical {
                flex-wrap: nowrap;
                justify-content: center;
                gap: 15px;
            }

            .services-vertical-tabs-content .text-center.text-lg-start {
                text-align: left;
            }
        }

        /* Services mobile and tablet */
        @media (max-width: 991px) {
            .services-nav-tabs-vertical {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .services-nav-tabs-vertical .nav-item {
                flex: 0 0 auto;
                margin: 5px;
            }
        }

        /* Services extra small screens */
        @media (max-width: 576px) {
            .services-nav-tabs-vertical .nav-link {
                min-width: 120px;
                padding: 0.5rem 1rem !important;
                font-size: 1rem;
            }
            
            .services-why-choose .section-heading h2 {
                font-size: 1.75rem;
            }
            
            .services-why-choose .section-heading p {
                font-size: 1rem;
                padding: 0 1rem;
            }
        }

        @media (max-width: 1199px) {
            .services-vertical-tabs-content img {
                width: 100%;
                height: auto;
            }
        }

        @media (min-width: 1200px) {
            .services-vertical-tabs-nav {
                width: 100%;
                max-width: 1280px;
                margin: 0 auto 2rem !important;
            }

            .services-vertical-tabs-content {
                width: 75%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 3rem;
                border-radius: 2rem;
            }
        }