 /* Unique prefix dh- (Dash Hotel) to avoid conflicts */
        .dh-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .dh-banner {
            position: relative;
            width: 100%;
            height: 300px;
            background: linear-gradient(rgba(0, 150, 199, 0.7), rgba(0, 150, 199, 0.7)), url('	https://www.dashinspectorate.com/uploads/thumb/232-464-1627122003.jpg') no-repeat center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 5%;
            margin-bottom: 30px;
        }

        .dh-banner h1 {
            color: white;
            font-size: 42px;
            margin: 0;
        }

        .dh-breadcrumb {
            color: white;
            margin-top: 10px;
        }

        .dh-breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .dh-main-content {
            display: flex;
            gap: 30px;
            padding: 0 15px;
        }

        .dh-sidebar {
            width: 25%;
            min-width: 260px;
            position: sticky;
            top: 20px;
            align-self: flex-start;
        }

        .dh-content {
            flex: 1;
            min-width: 0;
        }

        .dh-services-category {
            background: linear-gradient(to right, #0096c7, #e63946);
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .dh-service-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
            border: 1px solid #e1e1e1;
            border-top: none;
        }

        .dh-service-item {
            padding: 15px 20px;
            border-bottom: 1px solid #e1e1e1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .dh-service-item:hover {
            background-color: #f9f9f9;
        }

        .dh-service-item:last-child {
            border-bottom: none;
        }

        .dh-service-link {
            text-decoration: none;
            color: #555;
            flex: 1;
        }

        .dh-arrow {
            color: #0096c7;
        }

        .dh-team-image {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .dh-intro {
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .dh-heading {
            font-size: 32px;
            margin: 30px 0 20px;
            color: #333;
        }

        .dh-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .dh-feature-box {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            border-radius: 5px;
        }

        .dh-feature-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .dh-feature-desc {
            line-height: 1.5;
            color: #666;
        }

        .dh-stats {
            display: flex;
            flex-wrap: wrap;
            margin: 40px 0;
            gap: 20px;
        }

        .dh-stat-box {
            flex: 1;
            min-width: 220px;
            background-color: #0096c7;
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 5px;
        }

        .dh-stat-number {
            font-size: 34px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .dh-stat-text {
            font-size: 16px;
            line-height: 1.4;
        }

        .dh-contact-box {
            background-color: #0096c7;
            color: white;
            padding: 25px;
            border-radius: 5px;
            margin-bottom: 30px;
        }

        .dh-contact-heading {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .dh-contact-info {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
        }

        .dh-contact-info a {
            color: white;
            text-decoration: none;
        }

        .dh-contact-button {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background-color: white;
            color: #0096c7;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
        }

        .dh-faq {
            margin: 40px 0;
        }

        .dh-faq-title {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
        }

        .dh-faq-item {
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .dh-faq-question {
            padding: 15px 20px;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dh-faq-question h3 {
            margin: 0;
            font-size: 16px;
            font-weight: normal;
        }

        .dh-faq-arrow {
            color: #0096c7;
            transition: transform 0.3s;
        }

        .dh-faq-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .dh-active .dh-faq-arrow {
            transform: rotate(90deg);
        }

        .dh-active .dh-faq-content {
            max-height: 200px;
            padding: 15px 20px;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .dh-main-content {
                flex-direction: column;
            }

            .dh-sidebar {
                width: 100%;
                position: relative;
                margin-bottom: 30px;
            }

            .dh-features, .dh-stats {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .dh-banner {
                height: 200px;
            }

            .dh-banner h1 {
                font-size: 32px;
            }

            .dh-feature-box, .dh-stat-box {
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .dh-banner {
                height: 150px;
                padding-left: 15px;
            }

            .dh-banner h1 {
                font-size: 28px;
            }

            .dh-heading {
                font-size: 26px;
            }

            .dh-faq-title {
                font-size: 26px;
            }
        }