/** 
 * Custom Accordion Styles
 */
.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 35, 92, 0.03);
}

.acc-item[open] {
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0, 35, 92, 0.08);
}

.acc-header {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    cursor: pointer;
    position: relative;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.3s ease;
}

.acc-header::-webkit-details-marker {
    display: none;
}

.acc-header:hover {
    color: var(--primary);
}

.acc-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item[open] .acc-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.acc-body {
    padding: 0 25px 25px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    animation: accSlideDown 0.4s ease-out;
}

@keyframes accSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
