
       
       
      
        
        /* Main Container */
        .consultancy-box {
            max-width: 800px;
            margin: 20px auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .consultancy-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .consultancy-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3498db, #2ecc71);
        }
        
        /* Typography */
        .h22 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: clamp(24px, 3vw, 28px); /* Responsive font size */
            position: relative;
            padding-left: 15px;
            line-height: 1.3;
        }
        
        .h22::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 15px;
            width: 50px;
            height: 3px;
            background: #3498db;
        }
        
        .p2 {
            margin-bottom: 20px;
            color: #555;
            font-size: clamp(16px, 2vw, 18px);
        }
        
        /* Highlight Box */
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
            transition: all 0.3s ease;
        }
        
        .highlight-box:hover {
            background-color: #eef2f7;
            transform: translateX(5px);
        }
        
        /* Features and Services Sections */
        .features, .services {
            margin: 25px 0;
        }
        
        .section-ti {
            color: #2c3e50;
            font-size: clamp(18px, 2.5vw, 22px);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-list, .service-list {
            list-style-type: none;
            padding: 0;
            display: grid;
            gap: 10px;
        }
        
        .feature-item, .service-item {
            padding: 12px 15px 12px 45px;
            position: relative;
            background-color: #f8fafc;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: clamp(15px, 2vw, 17px);
        }
        
        .feature-item:hover, .service-item:hover {
            background-color: #e3f2fd;
            transform: translateX(5px);
        }
        
        .feature-item::before, .service-item::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .feature-item::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
        }
        
        .service-item::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233498db'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z'/%3E%3C/svg%3E");
        }
        
        
        
        
        /* Call to Action Button */
       
        /* Responsive Adjustments */
        @media (max-width: 768px) {
          

            .consultancy-box {
                padding: 20px 15px;
            }
            
            .feature-item, .service-item {
                padding: 10px 10px 10px 40px;
            }
            
            .feature-item::before, .service-item::before {
                left: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .consultancy-box::before {
                width: 3px;
            }
            
            .h22::after {
                width: 30px;
            }
            
            .highlight-box {
                padding: 12px;
            }
        }
  