/* Content Styles */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}


h2 {
    color: var(--primary-color);    
    font-size: 1.8rem;
    margin: 30px 0 20px;
}

h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.risk-section, .process-section, .governance-section {
    margin-bottom: 40px;
}

.risk-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.pillar {
    flex: 1 1 300px;
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pillar h3 i {
    color: #0066cc;
    margin-right: 10px;
}

.process-steps {
    list-style-type: none;
    padding-left: 0;
}


/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font-primary);
}

.process-steps li {
    background-color: #f5f9ff;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #0066cc;
}

.governance-list {
    list-style-type: none;
    padding-left: 0;
}

.governance-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.governance-list li:last-child {
    border-bottom: none;
}

