/* SOC 2 Specific Styles */
.regulation-hero {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    padding: 4rem 0;
}

.regulation-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.regulation-meta {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-tag, .region-tag, .jurisdiction-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.industry-tag {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.region-tag {
    background-color: #e3f2fd;
    color: #1565c0;
}

.jurisdiction-tag {
    background-color: #fff3e0;
    color: #e65100;
}

.regulation-content {
    max-width: 900px;
    margin: 0 auto;
}

.regulation-content h3 {
    color: #2e7d32;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.regulation-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #1b5e20;
}

.regulation-content ul {
    list-style-type: none;
    padding-left: 0;
}

.regulation-content ul li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid #2e7d32;
}

.regulation-content ul li::before {
    content: '•';
    color: #2e7d32;
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

.regulation-content ul li strong {
    color: #2e7d32;
    display: block;
    margin-bottom: 0.5rem;
}

.resources {
    background-color: #e8f5e9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.resources h3 {
    margin-top: 0;
    color: #2e7d32;
}

.resources a {
    color: #1b5e20;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.resources a:hover {
    color: #2e7d32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .regulation-hero h2 {
        font-size: 2rem;
    }
    
    .regulation-content h3 {
        font-size: 1.5rem;
    }
    
    .regulation-meta {
        flex-direction: column;
    }
    
    .regulation-content ul li {
        padding: 0.8rem;
        padding-left: 1.5rem;
    }
} 