        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-box {
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-title {
            margin: 0 0 10px;
            color: #000000ff;
            font-size: 18px;
        }

        .feature-description {
            margin: 0;
            color: #1f1a1aff;
            font-size: 15px;
        }

        .heading {
            font-weight: bold;
            font-family: 'Times New Roman', Times, serif;
        }

        .heading2 {
            font-weight: bold;
            font-family: 'Times New Roman', Times, serif;
            font-size: 22px;
            margin-top: 20px;
        }

        .text {
            /* font-family: 'Segoe UI', Tahoma, Verdana, sans-serif; */
            font-family: 'Times New Roman', Times, serif;
            font-size: 17px;
            color: #333;
            margin-top: 15px;
        }

        .hero-section {
            position: relative;
            background-size: cover;
            background-position: center;
            height: 300px;
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #16a085
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            margin-top: 10px;
            font-size: 16px;
            background-color: rgba(0, 0, 0, 0.01);
            padding: 8px 16px;
            border-radius: 5px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 5px;
        }

        .breadcrumb span {
            margin: 0 5px;
        }

        .breadcrumb a:hover {
            color: #0d3b31ff;
        }

        .btn-container {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 6px;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            font-size: 16px;
        }

        .btn-call {
            background-color: #003cff;
            /* Blue */
        }

        .btn-call:hover {
            background-color: #002db3;
        }

        .btn-whatsapp {
            background-color: #25D366;
        }

        .btn-whatsapp:hover {
            background-color: #1ea555;
        }

        .btn i {
            font-size: 18px;
        }

        table,
        th,
        td {
            border: solid 1px #000;
            padding: 10px;
        }

        th {
            background-color: #16a085;
            color: #fff;
        }

        table {
            border-collapse: collapse;
            caption-side: bottom;
        }

        @media screen and (max-width: 768px) {
            table {
                width: 100%;
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }

        .rts-faq-area {
            max-width: 1200px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .accordion-item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-header {
            width: 100%;
        }

        .accordion-button {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s;
        }

        .accordion-button::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .accordion-button.active::after {
            content: '−';
        }

        .accordion-button:hover {
            background-color: #f0f4ff;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            padding: 0 120px;
            background-color: #fff;
            color: #444;
            font-size: 15px;
            line-height: 1.6;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .accordion-body.open {
            padding: 15px 20px 20px;

        }

        @media (max-width: 768px) {
            .col-lg-6 {
                flex: 1 1 100%;
            }

            .title-six-center .title {
                font-size: 2rem;
            }
        }

        .slider-container {
            width: 100%;
            max-width: 1000px;
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .testimonials {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testicard {
            background: #f7f7f7ff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 300px;
            padding: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #363636;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 30px;
            position: absolute;
            /* top: -10px; */
            right: 20px;
            border: 4px solid #fff;
        }

        .testicard h3 {
            margin-top: 10px;
            margin-bottom: 5px;
            font-size: 18px;
            color: #000;
        }

        .testicard p.title {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .testicard p.message {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .rating {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }

        .rating i {
            color: #ff6f61;
        }

        .quote-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 24px;
            color: #ff6f61;
        }


        .testicard.orange .rating i,
        .testicard.orange .quote-icon {
            /* background-color: #616060; */
            color: #363636;
        }

        .testicard.pink .rating i,
        .testicard.pink .quote-icon {
            /* background-color: #616060; */
            color: #363636;
        }

        .testicard.yellow .rating i,
        .testicard.yellow .quote-icon {
            /* background-color: #616060; */
            color: #363636;
        }

        .slider-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .slider-buttons i {
            background-color: rgba(0, 0, 0, 0.3);
            color: #fff;
            /* font-size: 20px; */
            padding: 5px;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
            pointer-events: auto;
        }

        .slider-buttons i:hover {
            background-color: rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 1000px) {
            .testimonials {
                flex-direction: column;
                align-items: center;
                transform: none !important;
            }

            .testicard {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .slider-buttons {
                display: none;
            }
        }