/* Services Page Container */
        .service-detail-section .container,
        .services-intro .container,
        .services-nav .container {
            max-width: 1000px;
        }
        /* Services Page Styles */
        .services-intro {
            padding: 60px 0 20px;
            text-align: center;
        }
        .services-intro .sec-title {
            margin-bottom: 16px;
        }
        .services-intro .sec-title p {
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--thm-primary-color);
            letter-spacing: 2px;
            font-weight: 600;
        }
        .services-intro .sec-title .intro-heading {
            font-size: 30px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 0;
            line-height: 1.2em;
        }
        .services-intro .intro-text {
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: var(--thm-gray);
        }
        .services-nav {
            padding: 20px 0 50px;
            text-align: center;
        }
        .services-nav__tabs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            max-width: 620px;
            margin: 0 auto;
        }
        .services-nav__tab {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 12px 40px 12px 24px;
            border: 2px solid var(--thm-primary-color);
            border-radius: 30px;
            color: var(--thm-primary-color);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .services-nav__tab::after {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .services-nav__tab:hover,
        .services-nav__tab.active {
            background-color: var(--thm-primary-color);
            color: #fff;
        }
        .service-detail-section {
            padding: 80px 0;
        }
        .service-detail-section:nth-child(even) {
            background-color: #f9f9f9;
        }
        /* Title */
        .service-detail-section__title {
            margin-bottom: 36px;
            text-align: center;
        }
        .service-detail-section__title .sub-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--thm-primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .service-detail-section__title h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--thm-black);
            padding-bottom: 15px;
            border-bottom: 3px solid var(--thm-primary-color);
            display: inline-block;
            line-height: 1.2em;
        }
        /* Image: full width */
        .service-detail-section__img {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .service-detail-section__img img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }
        /* Description: full width */
        .service-detail-section__text {
            line-height: 1.9;
            color: var(--thm-gray);
            font-size: 15px;
            margin-bottom: 40px;
        }
        .service-detail-section__text p {
            margin-bottom: 16px;
        }
        .service-detail-section__text p:last-child {
            margin-bottom: 0;
        }
        /* Highlights + table: stacked vertically */
        .service-detail-section__lower {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }
        .service-detail-section__points-wrap {
            background: #e8f0fa;
            border-radius: 8px;
            padding: 28px 32px;
        }
        .service-detail-section__points-label {
            font-size: 18px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 16px;
            padding-left: 12px;
            border-left: 4px solid var(--thm-primary-color);
        }
        .service-detail-section__points {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 40px;
        }
        .service-detail-section__points li {
            position: relative;
            padding: 10px 0;
            font-size: 14px;
            color: var(--thm-black);
            line-height: 1.6;
            border-bottom: 1px dashed #d8e3ed;
        }
        .service-detail-section__points li:last-child,
        .service-detail-section__points li:nth-last-child(2):nth-child(odd) {
            border-bottom: none;
        }
        .service-detail-section__points li i {
            color: var(--thm-primary-color);
            margin-right: 10px;
            font-size: 14px;
        }
        .service-detail-section__table-wrap {
        }
        .service-detail-section__table-label {
            font-size: 18px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 16px;
            padding-left: 12px;
            border-left: 4px solid var(--thm-primary-color);
        }
        .service-detail-section__table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 8px;
            overflow: hidden;
        }
        .service-detail-section__table tr {
            border-bottom: 1px solid #e5e5e5;
        }
        .service-detail-section__table tr:last-child {
            border-bottom: none;
        }
        .service-detail-section__table th {
            padding: 14px 20px;
            background-color: var(--thm-primary-color);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            width: 160px;
            white-space: nowrap;
            vertical-align: middle;
            text-align: left;
        }
        .service-detail-section__table td {
            padding: 14px 20px;
            font-size: 14px;
            color: var(--thm-black);
            vertical-align: middle;
            background: #fff;
        }
        @media (max-width: 991px) {
            .service-detail-section {
                padding: 50px 0;
            }
            .service-detail-section__img img {
                height: 260px;
            }
            .service-detail-section__points {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 767px) {
            .services-nav__tabs {
                gap: 8px;
                grid-template-columns: repeat(2, 1fr);
            }
            .services-nav__tab {
                padding: 10px 34px 10px 16px;
                font-size: 13px;
            }
            .services-intro {
                padding: 60px 0 30px;
            }
            .services-intro .sec-title .intro-heading {
                font-size: 32px;
                line-height: 1.3em;
            }
            .service-detail-section {
                padding: 40px 0;
            }
            .service-detail-section__title h2 {
                font-size: 32px;
                line-height: 1.3em;
            }
            .service-detail-section__img img {
                height: 200px;
            }
            .service-detail-section__points-wrap {
                padding: 20px;
            }
            .service-detail-section__table th {
                width: 110px;
                padding: 10px 12px;
                font-size: 13px;
            }
            .service-detail-section__table td {
                padding: 10px 12px;
                font-size: 13px;
            }
        }