        :root {
            --primary-color: #dc3545;
            --secondary-color: #2c3e50;
            --accent-color: #3498db;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #6c757d;
        }
        
      
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Barlow', sans-serif;
            font-weight: 600;
        }
        
        .compliance-section {
            background-color: #fff;
            padding: 5rem 0;
        }
        
        .compliance-icon {
            color: var(--primary-color);
            font-size: 2.5rem;
            flex-shrink: 0;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(220, 53, 69, 0.1);
            border-radius: 50%;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .compliance-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .compliance-item:hover {
            background-color: #f8f9fa;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .compliance-item:hover .compliance-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .compliance-content h3 {
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--secondary-color);
        }
        
        .compliance-content p {
            color: var(--text-color);
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        @media (min-width: 768px) {
            .compliance-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .full-width-item {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 767px) {
            .compliance-item {
                flex-direction: column;
                text-align: center;
            }
            
            .compliance-icon {
                margin: 0 auto;
            }
         
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
        }