/* NBC Beliefs, Policies and Practices Styles */
.nbc-beliefs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nbc-beliefs-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 10px;
}

.nbc-beliefs-header h1 {
    margin: 0 0 15px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.nbc-beliefs-header p {
    margin: 0;
    font-size: 1.2em;
    opacity: 0.9;
}

.nbc-beliefs-section {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.nbc-beliefs-section-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 3px solid #2a5298;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.nbc-beliefs-section-header:hover {
    background: #e9ecef;
}

.nbc-beliefs-section-header h2 {
    margin: 0;
    color: #1e3c72;
    font-size: 1.5em;
}

.nbc-beliefs-section-header .toggle-icon {
    font-size: 1.5em;
    color: #2a5298;
    transition: transform 0.3s ease;
}

.nbc-beliefs-section-header.active .toggle-icon {
    transform: rotate(180deg);
}

.nbc-beliefs-section-content {
    padding: 30px;
    display: none;
}

.nbc-beliefs-section-content.active {
    display: block;
}

.nbc-beliefs-section-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.nbc-beliefs-section-content ul {
    padding-left: 20px;
}

.nbc-beliefs-section-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.nbc-beliefs-section-content h3 {
    color: #1e3c72;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.nbc-beliefs-footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 40px;
}

.nbc-beliefs-footer p {
    margin: 0;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nbc-beliefs-header h1 {
        font-size: 1.8em;
    }

    .nbc-beliefs-section-header h2 {
        font-size: 1.2em;
    }

    .nbc-beliefs-section-content {
        padding: 20px;
    }
}
