

/* --- Section Headings --- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b; /* slate-800 */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
    border-left: 4px solid #1e40af; /* blue-900 */
    padding-left: 0.75rem;
}

/* --- Accordion Styles --- */
.accordion-item {
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
    padding: 0.75rem 0;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151; /* gray-700 */
    transition: color 0.3s ease, transform 0.3s ease;
}
.accordion-header:hover h2 {
    color: #1e40af;
    transform: scale(1.02);
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #4b5563; /* gray-600 */
}
.accordion-item.active .accordion-content {
    max-height: none;
    padding-top: 0.5rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
