.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-item {
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.bullet-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bullet-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 14px 18px;
    background: #efebf3;
}

.bullet-dot {
    width: 14px;
    height: 14px;
    min-width: 14px;
    border-radius: 50%;
    background-color: #f1c40f;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.bullet-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
    color: #2c3e50;
}

.arrow {
    margin-left: auto;
    color: #f1c40f;
    transition: transform 0.3s ease;
    font-size: 25px;
}

.bullet-content {
    max-height: 0;
    overflow: auto;
    overflow: hidden;
    background: #efebf3;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 18px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.bullet-item.active .bullet-content {
    max-height: 1000px;
    padding: 14px 18px;
}

.bullet-item.active .arrow {
    transform: rotate(90deg);
}

.bullet-item.active .bullet-dot {
    transform: scale(1.3);
}