/* Accordion Styles for all pages */
h3.mb0 {
    cursor: pointer;
    background: #007bff;
    color: white !important;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
}
h3.mb0:hover {
    background: #0056b3;
}
h3.mb0 a {
    color: white !important;
    text-decoration: none !important;
}
h3.mb0 a strong {
    color: white !important;
}
/* Tüm alt elementlerin de beyaz olmasını sağla */
h3.mb0 * {
    color: white !important;
}
/* Açık/kapalı göstergesi ekle */
h3.mb0::after {
    content: ' ▼';
    float: right;
    transition: transform 0.3s;
    color: white !important;
}
h3.mb0.active::after {
    transform: rotate(-180deg);
}