
        /* ====== HOME SERVICES UNIQUE CSS ====== */
        .hs-section {
            padding: 60px 20px;
            background: #f8f9fa;
            color: #333;
        }

        .hs-container {
            /* max-width: 1200px; */
            max-width: 1140px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hs-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            flex: 1 1 30%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .hs-card:hover {
            transform: translateY(-5px);
        }

        .hs-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* Dynamic image bottom border colors */
        .hs-card:nth-child(1) img {
            border-bottom: 4px solid #007bff;
        }

        .hs-card:nth-child(2) img {
            border-bottom: 4px solid #28a745;
        }

        .hs-card:nth-child(3) img {
            border-bottom: 4px solid #ff9800;
        }

        .hs-accordion {
            padding: 20px;
            flex-grow: 1;
        }

        .hs-accordion-item {
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }

        .hs-accordion-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: #333;
        }

        .hs-accordion-title i {
            transition: transform 0.3s;
        }

        .hs-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }

        .hs-accordion-content.open {
            max-height: 200px;
            margin-top: 5px;
        }

        .hs-read-more {
            color: #007bff;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
        }

        .hs-read-more:hover {
            color: #0056b3;
        }

        .hs-bottom-readmore {
            border-top: 2px solid #eee;
            text-align: center;
            padding: 15px;
        }

        .hs-bottom-readmore a {
            text-decoration: none;
            color: #007bff;
            font-weight: 600;
            transition: 0.3s;
        }

        .hs-bottom-readmore a:hover {
            color: #0056b3;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hs-card {
                flex: 1 1 45%;
            }
        }

        @media (max-width: 768px) {
            .hs-card {
                flex: 1 1 100%;
            }
        }
