.tips-accordion {
    margin-top: 1.5rem;
}

.tip-header {
    width: 100%;
    padding: 1rem;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.tip-header::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.tip-item.active .tip-header::after {
    transform: rotate(180deg);
}

.tip-content {
    display: none;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid var(--gray);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.tip-item.active .tip-content {
    display: block;
}