/* PDPA Specific Styles */
.regulation-hero {
    background: linear-gradient(135deg, #311b92, #4527a0);
    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: #ede7f6;
    color: #4527a0;
}

.region-tag {
    background-color: #e8eaf6;
    color: #3949ab;
}

.jurisdiction-tag {
    background-color: #e3f2fd;
    color: #1565c0;
}

.regulation-content {
    max-width: 900px;
    margin: 0 auto;
}

.regulation-content h3 {
    color: #311b92;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    position: relative;
}

.regulation-content h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #4527a0;
    border-radius: 2px;
}

.jurisdiction-details {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.jurisdiction-details h4 {
    color: #4527a0;
    margin-top: 1.5rem;
    font-size: 1.4rem;
}

.jurisdiction-details ul {
    list-style-type: none;
    padding-left: 0;
}

.jurisdiction-details ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.jurisdiction-details ul li:last-child {
    border-bottom: none;
}

.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: 1.5rem;
}

.regulation-content ul li::before {
    content: '•';
    color: #4527a0;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

.regulation-content ul li strong {
    color: #311b92;
}

.resources {
    background-color: #ede7f6;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.resources h3 {
    margin-top: 0;
    color: #311b92;
}

.resources a {
    color: #4527a0;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.resources a:hover {
    color: #311b92;
}

/* Responsive Design */
@media (max-width: 768px) {
    .regulation-hero h2 {
        font-size: 2rem;
    }
    
    .regulation-content h3 {
        font-size: 1.5rem;
    }
    
    .regulation-meta {
        flex-direction: column;
    }
    
    .jurisdiction-details {
        padding: 1rem;
    }
    
    .regulation-content h3::before {
        left: -15px;
    }
} 